import React from 'react'; import { View, ScrollView, Linking } from 'react-native'; import { Image } from 'expo-image'; import { AppContainer, MyText, tw, MyTouchableOpacity } from 'common-ui'; import MaterialIcons from '@expo/vector-icons/MaterialIcons'; import FontAwesome5 from '@expo/vector-icons/FontAwesome5'; export default function About() { const openLink = (url: string) => { Linking.openURL(url).catch((err) => console.error("Couldn't load page", err)); }; return ( {/* Hero Section */} Meat Farmer Bringing local trust and online convenience together. {/* Mission Cards */} Our Mission Local Roots Based in MBNR, supporting our community. Best Price Minimizing costs to enhance your buying experience. Quality First Committed to fresh, high-quality meat products. Farmers First Dedicated to supporting local farmers. {/* Sourcing Section */} Sourcing & Quality All items are procured directly from authorized dealers. 100% local products sourced from trusted suppliers. All products are purely Halal certified. {/* Payments & Refunds Section */} Payments & Refunds Payment Options: Online or Cash on Delivery (COD). Complaints: Must be raised within 12 hours of delivery. Refunds are processed to the original payment method. Alternatively, receive a refund coupon for future purchases. Processing time: Up to 3 business days. {/* Footer */} Follow us © 2024 Meat Farmer. All rights reserved. ); }