diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 4713d4e..f81e6ad 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -6,6 +6,7 @@ import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; import FooterBase from '@/components/sections/footer/FooterBase'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import { Drumstick, Carrot, ChefHat } from "lucide-react"; export default function LandingPage() { return ( @@ -26,30 +27,15 @@ export default function LandingPage() { @@ -63,33 +49,13 @@ export default function LandingPage() { useInvertedBackground={false} products={[ { - id: "1", - name: "Southern Fried Chicken", - price: "$14.99", - imageSrc: "http://img.b2bpic.net/free-photo/crispy-flossy-toast-with-shredded-pork_1150-23537.jpg?_wi=3", - imageAlt: "Crispy fried chicken basket", - }, + id: "1", name: "Southern Fried Chicken", price: "$14.99", imageSrc: "http://img.b2bpic.net/free-photo/crispy-flossy-toast-with-shredded-pork_1150-23537.jpg", imageAlt: "Crispy fried chicken basket"}, { - id: "2", - name: "Pan-Seared Pork Chops", - price: "$16.50", - imageSrc: "http://img.b2bpic.net/free-photo/pork-chop-steak_1339-5917.jpg?_wi=3", - imageAlt: "Pan seared pork chop with sides", - }, + id: "2", name: "Pan-Seared Pork Chops", price: "$16.50", imageSrc: "http://img.b2bpic.net/free-photo/pork-chop-steak_1339-5917.jpg", imageAlt: "Pan seared pork chop with sides"}, { - id: "3", - name: "Creamy Potato Soup", - price: "$7.99", - imageSrc: "http://img.b2bpic.net/free-photo/cauliflower-soup-bowl-wooden-table-close-up_123827-34671.jpg?_wi=3", - imageAlt: "Bowl of creamy potato soup", - }, + id: "3", name: "Creamy Potato Soup", price: "$7.99", imageSrc: "http://img.b2bpic.net/free-photo/cauliflower-soup-bowl-wooden-table-close-up_123827-34671.jpg", imageAlt: "Bowl of creamy potato soup"}, { - id: "4", - name: "Smoked Prime Rib Sandwich", - price: "$15.75", - imageSrc: "http://img.b2bpic.net/free-photo/sandwich-with-ground-meat_658428-394.jpg?_wi=3", - imageAlt: "Prime rib sandwich with fries", - }, + id: "4", name: "Smoked Prime Rib Sandwich", price: "$15.75", imageSrc: "http://img.b2bpic.net/free-photo/sandwich-with-ground-meat_658428-394.jpg", imageAlt: "Prime rib sandwich with fries"}, ]} title="Our Delicious Buffet & A La Carte Menu" description="Discover a wide array of authentic Southern comfort food, prepared fresh daily. From our famous fried chicken to soulful sides, there's something for everyone." @@ -103,26 +69,18 @@ export default function LandingPage() { useInvertedBackground={true} features={[ { - id: "1", - title: "Chef's Special Baked Chicken", - description: "Succulent baked chicken seasoned to perfection, served with a medley of roasted seasonal vegetables.", - media: { - imageSrc: "http://img.b2bpic.net/free-photo/top-view-baked-chicken-veggies-plate-with-cutlery_23-2148682740.jpg?_wi=3", - imageAlt: "Baked chicken with vegetables", - }, + id: "1", title: "Chef's Special Baked Chicken", description: "Succulent baked chicken seasoned to perfection, served with a medley of roasted seasonal vegetables.", media: { + imageSrc: "http://img.b2bpic.net/free-photo/top-view-baked-chicken-veggies-plate-with-cutlery_23-2148682740.jpg", imageAlt: "Baked chicken with vegetables"}, items: [ { icon: Drumstick, - text: "Perfectly baked for tenderness", - }, + text: "Perfectly baked for tenderness"}, { icon: Carrot, - text: "Fresh, locally sourced vegetables", - }, + text: "Fresh, locally sourced vegetables"}, { icon: ChefHat, - text: "Chef's daily rotating sauce", - }, + text: "Chef's daily rotating sauce"}, ], reverse: false, }, @@ -136,54 +94,33 @@ export default function LandingPage() {