diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 1f91d1c..1b07bcc 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -7,7 +7,7 @@ import MediaAbout from '@/components/sections/about/MediaAbout'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -export default function LandingPage() { +export default function AboutPage() { return ( @@ -59,60 +51,16 @@ export default function LandingPage() { title="Our Journey" description="Hear from the people who keep our kitchen fires burning." kpiItems={[ - { - value: "100%", - label: "Fresh Ingredients", - }, - { - value: "24/7", - label: "Passion", - }, - { - value: "10k+", - label: "Happy Customers", - }, + { value: "100%", label: "Fresh Ingredients" }, + { value: "24/7", label: "Passion" }, + { value: "10k+", label: "Happy Customers" }, ]} testimonials={[ - { - id: "t1", - name: "Amit R.", - role: "Food Blogger", - company: "Delhi Eats", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/indian-man-smiling-restaurant-concept_53876-13779.jpg?_wi=2", - }, - { - id: "t2", - name: "Sonia L.", - role: "Customer", - company: "Local", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-senior-with-delicious-food_23-2150854212.jpg?_wi=2", - }, - { - id: "t3", - name: "Vikram V.", - role: "Regular", - company: "Saket Resident", - rating: 4, - imageSrc: "http://img.b2bpic.net/free-photo/front-view-arrangement-with-different-feelings_23-2148860243.jpg?_wi=2", - }, - { - id: "t4", - name: "Meera P.", - role: "Chef", - company: "Culinary Arts", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5054.jpg?_wi=2", - }, - { - id: "t5", - name: "Rahul D.", - role: "Fan", - company: "Foodie", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-work_23-2149097885.jpg?_wi=2", - }, + { id: "t1", name: "Amit R.", role: "Food Blogger", company: "Delhi Eats", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/indian-man-smiling-restaurant-concept_53876-13779.jpg" }, + { id: "t2", name: "Sonia L.", role: "Customer", company: "Local", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/high-angle-senior-with-delicious-food_23-2150854212.jpg" }, + { id: "t3", name: "Vikram V.", role: "Regular", company: "Saket Resident", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/front-view-arrangement-with-different-feelings_23-2148860243.jpg" }, + { id: "t4", name: "Meera P.", role: "Chef", company: "Culinary Arts", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5054.jpg" }, + { id: "t5", name: "Rahul D.", role: "Fan", company: "Foodie", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-work_23-2149097885.jpg" }, ]} /> @@ -121,45 +69,13 @@ export default function LandingPage() { ); -} +} \ No newline at end of file