From 49543754a2947c9a5b1ff6e421bf6ba0ff3369b0 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 4 Jun 2026 12:35:31 +0000 Subject: [PATCH] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 35 ++++++++++++++++++++--------------- 1 file changed, 20 insertions(+), 15 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index b612c66..e1e1715 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -11,7 +11,21 @@ import { Metadata } from 'next'; import { ChefHat, Utensils, Award } from 'lucide-react'; // Example icons export const metadata: Metadata = { - title: "Our Menu - Business Pro Restaurant", description: "Explore our comprehensive menu, including delicious all-you-can-eat offerings, exciting happy hour specials, and details for private dining."}; + title: "Our Menu - Business Pro Restaurant", description: "Explore our comprehensive menu, including delicious all-you-can-eat offerings, exciting happy hour specials, and details for private dining." +}; + +const consistentNavItems = [ + { name: "Home", id: "/" }, + { name: "Menu", id: "/menu" }, + { name: "Location", id: "/location" }, + { name: "Gallery", id: "/gallery" }, + { name: "Contact", id: "/contact" }, + { name: "About", id: "/#about" }, + { name: "Our Offerings", id: "/#features" }, + { name: "Dining Experience", id: "/#pricing" }, + { name: "Guest Reviews", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" } +]; export default function MenuPage() { return ( @@ -30,16 +44,7 @@ export default function MenuPage() {