Merge version_3 into main #6
@@ -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() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Features", id: "#features" },
|
||||
{ name: "Pricing", id: "#pricing" },
|
||||
{ name: "Testimonials", id: "#testimonials" },
|
||||
{ name: "FAQ", id: "#faq" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
]}
|
||||
navItems={consistentNavItems}
|
||||
brandName="Business Pro"
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
@@ -91,14 +96,14 @@ export default function MenuPage() {
|
||||
description="Indulge in endless delights with our special buffet packages."
|
||||
plans={[
|
||||
{
|
||||
id: "ayce1", title: "Classic Buffet", price: "₦25,000", period: "per person", button: { text: "Book Now", href: "#contact" },
|
||||
id: "ayce1", title: "Classic Buffet", price: "₦25,000", period: "per person", button: { text: "Book Now", href: "/contact" },
|
||||
features: [
|
||||
"Selection of 10+ main dishes", "Unlimited appetizers & salads", "Assorted desserts", "Soft drinks included"
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-catering-restaurant_23-2149340989.jpg", imageAlt: "Classic Buffet"
|
||||
},
|
||||
{
|
||||
id: "ayce2", title: "Premium Feast", price: "₦35,000", period: "per person", button: { text: "Book Now", href: "#contact" },
|
||||
id: "ayce2", title: "Premium Feast", price: "₦35,000", period: "per person", button: { text: "Book Now", href: "/contact" },
|
||||
features: [
|
||||
"All Classic Buffet items", "Grilled seafood selection", "Exotic fruit bar", "Premium non-alcoholic beverages"
|
||||
],
|
||||
@@ -117,14 +122,14 @@ export default function MenuPage() {
|
||||
description="Unwind and enjoy amazing deals on drinks and appetizers, daily from 4 PM - 7 PM."
|
||||
plans={[
|
||||
{
|
||||
id: "hh1", title: "Cocktail Mixer", price: "₦3,000", period: "per cocktail", button: { text: "View Drinks", href: "#main-menu" },
|
||||
id: "hh1", title: "Cocktail Mixer", price: "₦3,000", period: "per cocktail", button: { text: "View Drinks", href: "/menu" },
|
||||
features: [
|
||||
"50% off selected cocktails", "Buy One Get One Free on local beers", "Special wine offers"
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-hour-drinks_23-2147774127.jpg", imageAlt: "Cocktail Mixer"
|
||||
},
|
||||
{
|
||||
id: "hh2", title: "Appetizer Delight", price: "₦2,000", period: "per plate", button: { text: "See Appetizers", href: "#main-menu" },
|
||||
id: "hh2", title: "Appetizer Delight", price: "₦2,000", period: "per plate", button: { text: "See Appetizers", href: "/menu" },
|
||||
features: [
|
||||
"30% off all appetizers", "Complimentary bread basket with any order", "Chef's special happy hour bites"
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user