diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index e53b5dd..4fc7027 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -3,13 +3,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; -import SplitAbout from '@/components/sections/about/SplitAbout'; -import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; -import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; -import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBase from '@/components/sections/footer/FooterBase'; -import { Award, Coffee, Heart, Leaf, Palette, Sparkles, Zap } from 'lucide-react'; +import { Coffee, Heart } from 'lucide-react'; const handleNewsletterSubmit = (email: string) => { console.log('Newsletter signup:', email); @@ -34,7 +31,7 @@ export default function MenuPage() { navItems={[ { name: "Home", id: "/" }, { name: "About", id: "about" }, - { name: "Menu", id: "menu" }, + { name: "Menu", id: "/menu" }, { name: "Visit", id: "contact" }, { name: "Contact", id: "contact" } ]} @@ -46,16 +43,16 @@ export default function MenuPage() {
-
- -
- -
- + -
- -
- console.log('Product clicked') }, { - id: "2", value: "20+", title: "Brunch Dishes", description: "Seasonal menu with signature favourites and new creations", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sugar-cookies-with-strawberry-jelly-white-surface_140725-90426.jpg?_wi=5", imageAlt: "Selection of brunch dishes" - } - ]} - /> -
- -
- console.log('Product clicked') }, { - id: "2", title: "Creative & Delicious Menu", quote: "The brunch menu is so creative. I've tried every dish at least twice, and they're all incredible. The combination of flavours and the quality of ingredients really sets Belle Café apart from other brunch spots.", name: "Lisa Wong", role: "Food Blogger", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-with-book-coffee-shop_23-2150378308.jpg?_wi=2", imageAlt: "Lisa photographing brunch at Belle Café" + id: "3", name: "Berry Granola Parfait", price: "$12.50", variant: "Yogurt | Fresh Berries | House Granola", imageSrc: "http://img.b2bpic.net/free-photo/communicating-with-multicultural-colleagues-small-local-cosy-restaurant-with-delicious-food_8353-10023.jpg", imageAlt: "Berry Granola Parfait", onProductClick: () => console.log('Product clicked') }, { - id: "3", title: "Worth the Visit", quote: "I drove 45 minutes just for brunch here after hearing about it from friends. The menu lived up to all the hype. Every element on the plate was thoughtfully prepared. Definitely coming back!", name: "Robert Martinez", role: "Visitor", imageSrc: "http://img.b2bpic.net/free-photo/two-young-beautiful-smiling-hipster-female-trendy-summer-clothescarefree-women-posing-veranda-cafe-streetpositive-models-drinking-white-wineenjoying-their-vacationeating-croissant_158538-24271.jpg?_wi=2", imageAlt: "Robert enjoying Belle Café brunch" + id: "4", name: "Crispy Pancakes with Maple", price: "$13.00", variant: "Maple Syrup | Whipped Cream | Fresh Fruit", imageSrc: "http://img.b2bpic.net/free-photo/elevated-view-baked-croissant-fruits-tea-dryfruits-white-tablecloth_23-2147907266.jpg?_wi=1", imageAlt: "Crispy Pancakes with Maple Syrup", onProductClick: () => console.log('Product clicked') }, { - id: "4", title: "Perfect for Every Occasion", quote: "Whether I'm working on my laptop, meeting friends, or celebrating a special occasion, Belle Café's menu has something perfect for every moment. The versatility and quality are unmatched.", name: "Sophie Chen", role: "Regular Guest", imageSrc: "http://img.b2bpic.net/free-photo/pretty-young-woman-with-long-hair-sitting-cafe-with-laptop_273609-6341.jpg?_wi=2", imageAlt: "Sophie at Belle Café with laptop" + id: "5", name: "Charred Tomato Shakshuka", price: "$15.00", variant: "Baked Eggs | Pepper | Sourdough", imageSrc: "http://img.b2bpic.net/free-photo/man-enjoying-his-virtual-date_23-2149307285.jpg?_wi=1", imageAlt: "Charred Tomato Shakshuka", onProductClick: () => console.log('Product clicked') + }, + { + id: "6", name: "Seasonal Salad Bowl", price: "$13.50", variant: "Local Greens | Seasonal Vegetables | House Dressing", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sugar-cookies-with-strawberry-jelly-white-surface_140725-90426.jpg?_wi=1", imageAlt: "Seasonal Salad Bowl", onProductClick: () => console.log('Product clicked') + }, + { + id: "7", name: "Single Origin Espresso", price: "$4.50", variant: "Double Shot | Ethiopian | Medium Roast", imageSrc: "http://img.b2bpic.net/free-photo/close-up-barista-preparing-coffee_1232-866.jpg?_wi=1", imageAlt: "Single Origin Espresso", onProductClick: () => console.log('Product clicked') + }, + { + id: "8", name: "Creamy Flat White", price: "$5.50", variant: "Espresso | Microfoam Milk | Latte Art", imageSrc: "http://img.b2bpic.net/free-photo/communicating-with-multicultural-colleagues-small-local-cosy-restaurant-with-delicious-food_8353-10023.jpg", imageAlt: "Creamy Flat White Coffee", onProductClick: () => console.log('Product clicked') } ]} /> @@ -165,15 +105,15 @@ export default function MenuPage() {