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() {