diff --git a/src/app/page.tsx b/src/app/page.tsx index f00ce63..443890e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,73 +32,29 @@ export default function LandingPage() {
@@ -124,48 +80,12 @@ export default function LandingPage() { gridVariant="three-columns-all-equal-width" useInvertedBackground={false} products={[ - { - id: "p1", - name: "Gourmet Beef Burger", - price: "$16.00", - variant: "Classic", - imageSrc: "http://img.b2bpic.net/free-photo/delicious-cheeseburger-with-french-fries_23-2148290584.jpg", - }, - { - id: "p2", - name: "Margherita Pizza", - price: "$14.00", - variant: "Italian", - imageSrc: "http://img.b2bpic.net/free-photo/experienced-chef-is-putting-his-pizza-oven-using-special-giant-spatula_613910-3392.jpg", - }, - { - id: "p3", - name: "Classic Carbonara", - price: "$18.00", - variant: "Pasta", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-cooked-potatoes-delicious-dish-with-greens-dark-surface-potato-dinner-cooking-meal-dish_140725-102137.jpg", - }, - { - id: "p4", - name: "Fresh Garden Salad", - price: "$12.00", - variant: "Healthy", - imageSrc: "http://img.b2bpic.net/free-photo/man-eating-corn-salad-chicken-lettuce-pepper-sesame-side-view_141793-1842.jpg", - }, - { - id: "p5", - name: "Creamy Fettuccine", - price: "$19.00", - variant: "Pasta", - imageSrc: "http://img.b2bpic.net/free-photo/penne-pasta-cream-cheese_1339-3955.jpg", - }, - { - id: "p6", - name: "Chocolate Lava Cake", - price: "$9.00", - variant: "Dessert", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-little-creamy-cake-with-chocolate-cookies-dark-surface-biscuit-cake-sweet-pie-sugar-cookie_140725-118183.jpg", - }, + { id: "p1", name: "Gourmet Beef Burger", price: "$16.00", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/delicious-cheeseburger-with-french-fries_23-2148290584.jpg" }, + { id: "p2", name: "Margherita Pizza", price: "$14.00", variant: "Italian", imageSrc: "http://img.b2bpic.net/free-photo/experienced-chef-is-putting-his-pizza-oven-using-special-giant-spatula_613910-3392.jpg" }, + { id: "p3", name: "Classic Carbonara", price: "$18.00", variant: "Pasta", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-cooked-potatoes-delicious-dish-with-greens-dark-surface-potato-dinner-cooking-meal-dish_140725-102137.jpg" }, + { id: "p4", name: "Fresh Garden Salad", price: "$12.00", variant: "Healthy", imageSrc: "http://img.b2bpic.net/free-photo/man-eating-corn-salad-chicken-lettuce-pepper-sesame-side-view_141793-1842.jpg" }, + { id: "p5", name: "Creamy Fettuccine", price: "$19.00", variant: "Pasta", imageSrc: "http://img.b2bpic.net/free-photo/penne-pasta-cream-cheese_1339-3955.jpg" }, + { id: "p6", name: "Chocolate Lava Cake", price: "$9.00", variant: "Dessert", imageSrc: "http://img.b2bpic.net/free-photo/top-view-little-creamy-cake-with-chocolate-cookies-dark-surface-biscuit-cake-sweet-pie-sugar-cookie_140725-118183.jpg" } ]} title="Our Signature Menu" description="Explore our curated selection of signature dishes, prepared daily from scratch." @@ -178,21 +98,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} features={[ - { - icon: Clock, - title: "Rapid Delivery", - description: "Get your meals delivered hot and fresh in under 45 minutes.", - }, - { - icon: ShieldCheck, - title: "Secure Payments", - description: "Safe, encrypted, and convenient online checkout process.", - }, - { - icon: Leaf, - title: "Sustainable Sourcing", - description: "We partner with local farms to provide fresh, ethical produce.", - }, + { icon: Clock, title: "Rapid Delivery", description: "Get your meals delivered hot and fresh in under 45 minutes." }, + { icon: ShieldCheck, title: "Secure Payments", description: "Safe, encrypted, and convenient online checkout process." }, + { icon: Leaf, title: "Sustainable Sourcing", description: "We partner with local farms to provide fresh, ethical produce." } ]} title="Why Choose Us" description="Experience superior quality with our seamless service." @@ -201,31 +109,14 @@ export default function LandingPage() {