From e7bd854eba3b34a6fa614ff469386b11320ef5e6 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 22:25:40 +0000 Subject: [PATCH] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 154 ++++++++++++------------------------------ 1 file changed, 43 insertions(+), 111 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index be6228b..bb41207 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -10,12 +10,12 @@ import Link from "next/link"; export default function MenuPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "About", id: "about" }, - { name: "Menu", id: "menu" }, - { name: "Custom Cakes", id: "cakes" }, - { name: "Locations", id: "locations" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Menu", id: "/menu" }, + { name: "Custom Cakes", id: "/custom-cakes" }, + { name: "Locations", id: "/locations" }, + { name: "Contact", id: "/contact" }, ]; return ( @@ -34,14 +34,16 @@ export default function MenuPage() { @@ -55,47 +57,17 @@ export default function MenuPage() { useInvertedBackground={false} products={[ { - id: "1", - name: "Victoria Sponge Cake", - price: "PKR 450/Serving", - imageSrc: "http://img.b2bpic.net/free-photo/delicious-products-arrangement-bakery_23-2150273142.jpg?_wi=3", - imageAlt: "Victoria Sponge Cake", - }, + id: "1", name: "Victoria Sponge Cake", price: "PKR 450/Serving", imageSrc: "http://img.b2bpic.net/free-photo/delicious-products-arrangement-bakery_23-2150273142.jpg?_wi=3", imageAlt: "Victoria Sponge Cake"}, { - id: "2", - name: "French Croissants", - price: "PKR 120 Each", - imageSrc: "http://img.b2bpic.net/free-photo/croissants-flat-lay-plaster-kitchen-towel_176474-8190.jpg?_wi=3", - imageAlt: "Golden Croissants", - }, + id: "2", name: "French Croissants", price: "PKR 120 Each", imageSrc: "http://img.b2bpic.net/free-photo/croissants-flat-lay-plaster-kitchen-towel_176474-8190.jpg?_wi=3", imageAlt: "Golden Croissants"}, { - id: "3", - name: "Artisan Sandwiches", - price: "PKR 350", - imageSrc: "http://img.b2bpic.net/free-photo/wooden-board-homemade-sandwich-sliced-vegetables-marble-surface_114579-38904.jpg?_wi=2", - imageAlt: "Premium Sandwiches", - }, + id: "3", name: "Artisan Sandwiches", price: "PKR 350", imageSrc: "http://img.b2bpic.net/free-photo/wooden-board-homemade-sandwich-sliced-vegetables-marble-surface_114579-38904.jpg?_wi=2", imageAlt: "Premium Sandwiches"}, { - id: "4", - name: "Specialty Donuts", - price: "PKR 100 Each", - imageSrc: "http://img.b2bpic.net/free-photo/individual-epiphany-cake-roscon-de-reyes-wooden-table_123827-28614.jpg?_wi=2", - imageAlt: "Strawberry & Vanilla Donuts", - }, + id: "4", name: "Specialty Donuts", price: "PKR 100 Each", imageSrc: "http://img.b2bpic.net/free-photo/individual-epiphany-cake-roscon-de-reyes-wooden-table_123827-28614.jpg?_wi=2", imageAlt: "Strawberry & Vanilla Donuts"}, { - id: "5", - name: "Sourdough Loaves", - price: "PKR 280", - imageSrc: "http://img.b2bpic.net/free-photo/coffee-near-sandwich-with-knife_23-2147717724.jpg?_wi=3", - imageAlt: "Fresh Artisan Breads", - }, + id: "5", name: "Sourdough Loaves", price: "PKR 280", imageSrc: "http://img.b2bpic.net/free-photo/coffee-near-sandwich-with-knife_23-2147717724.jpg?_wi=3", imageAlt: "Fresh Artisan Breads"}, { - id: "6", - name: "Full Breakfast Set", - price: "PKR 680", - imageSrc: "http://img.b2bpic.net/free-photo/cheese-plate-sausages-with-vegetables_140725-3366.jpg?_wi=3", - imageAlt: "Full Breakfast Platter", - }, + id: "6", name: "Full Breakfast Set", price: "PKR 680", imageSrc: "http://img.b2bpic.net/free-photo/cheese-plate-sausages-with-vegetables_140725-3366.jpg?_wi=3", imageAlt: "Full Breakfast Platter"}, ]} /> @@ -108,13 +80,9 @@ export default function MenuPage() { description="Contact us today to discuss your catering needs, custom cake orders, or special requests. Our team is ready to make your celebration memorable." buttons={[ { - text: "Call Us Now", - href: "tel:+923005555555", - }, + text: "Call Us Now", href: "tel:+923005555555"}, { - text: "Send Message", - href: "#", - }, + text: "Send Message", href: "/contact"}, ]} background={{ variant: "plain" }} useInvertedBackground={true} @@ -125,87 +93,51 @@ export default function MenuPage() {