From faf4b5f4e5d141db66f05bd25a6c8f9035eba5ff Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 16:49:03 +0000 Subject: [PATCH] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 113 ++++++------------------------------------ 1 file changed, 16 insertions(+), 97 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 0ac0b1b..c3418c9 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -6,8 +6,9 @@ import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwent import FooterSimple from '@/components/sections/footer/FooterSimple'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import { Sprout, WheatOff, ChefHat, Scale } from "lucide-react"; -export default function LandingPage() { +export default function MenuPage() { return ( @@ -63,24 +46,8 @@ export default function LandingPage() { title="Full Menu" description="See our complete list of offerings." products={[ - { - id: "m1", - brand: "Burger", - name: "BBQ Burger", - price: "$13.99", - rating: 5, - reviewCount: "50", - imageSrc: "http://img.b2bpic.net/free-photo/side-view-cheeseburger-grilled-beef-patty-with-cheese-lettuce-burger-buns_141793-4806.jpg", - }, - { - id: "m2", - brand: "Sides", - name: "Onion Rings", - price: "$4.99", - rating: 4, - reviewCount: "30", - imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-with-potatoes-served-with-onions-tomatoes-greens_141793-1068.jpg", - }, + { id: "m1", brand: "Burger", name: "BBQ Burger", price: "$13.99", rating: 5, reviewCount: "50", imageSrc: "http://img.b2bpic.net/free-photo/side-view-cheeseburger-grilled-beef-patty-with-cheese-lettuce-burger-buns_141793-4806.jpg" }, + { id: "m2", brand: "Sides", name: "Onion Rings", price: "$4.99", rating: 4, reviewCount: "30", imageSrc: "http://img.b2bpic.net/free-photo/fried-meat-with-potatoes-served-with-onions-tomatoes-greens_141793-1068.jpg" }, ]} /> @@ -92,34 +59,10 @@ export default function LandingPage() { title="Dietary Options" description="We cater to all tastes." features={[ - { - title: "Vegan", - description: "Plant-based goodness.", - buttonIcon: "Sprout", - imageSrc: "http://img.b2bpic.net/free-photo/delicious-realistic-burger_23-2150902326.jpg?_wi=1", - imageAlt: "Delicious realistic burger", - }, - { - title: "Gluten Free", - description: "Delicious choices.", - buttonIcon: "WheatOff", - imageSrc: "http://img.b2bpic.net/free-photo/hamburger-chips_23-2147695734.jpg?_wi=3", - imageAlt: "Delicious realistic burger", - }, - { - title: "Halal", - description: "Authentic quality.", - buttonIcon: "ChefHat", - imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-burger-street-cafe-close-up_169016-43231.jpg?_wi=3", - imageAlt: "Delicious realistic burger", - }, - { - title: "Low Calorie", - description: "Healthy alternatives.", - buttonIcon: "Scale", - imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-hands-holds-two-burgers-blurred-background_169016-43235.jpg?_wi=3", - imageAlt: "Delicious realistic burger", - }, + { title: "Vegan", description: "Plant-based goodness.", buttonIcon: Sprout, imageSrc: "http://img.b2bpic.net/free-photo/delicious-realistic-burger_23-2150902326.jpg", imageAlt: "Delicious realistic burger" }, + { title: "Gluten Free", description: "Delicious choices.", buttonIcon: WheatOff, imageSrc: "http://img.b2bpic.net/free-photo/hamburger-chips_23-2147695734.jpg", imageAlt: "Delicious realistic burger" }, + { title: "Halal", description: "Authentic quality.", buttonIcon: ChefHat, imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-burger-street-cafe-close-up_169016-43231.jpg", imageAlt: "Delicious realistic burger" }, + { title: "Low Calorie", description: "Healthy alternatives.", buttonIcon: Scale, imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-hands-holds-two-burgers-blurred-background_169016-43235.jpg", imageAlt: "Delicious realistic burger" }, ]} /> @@ -127,32 +70,8 @@ export default function LandingPage() {