diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 4272e79..febe7d3 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -4,9 +4,9 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import HeroSplit from "@/components/sections/hero/HeroSplit"; -import BlogCardThree from "@/components/sections/blog/BlogCardThree"; +import ProductCardFour from "@/components/sections/product/ProductCardFour"; import FooterMedia from "@/components/sections/footer/FooterMedia"; -import { Award, Camera, Phone, ShoppingCart } from "lucide-react"; +import { Award, Flame, Phone, ShoppingCart } from "lucide-react"; import { useState, useEffect } from "react"; export default function MenuPage() { @@ -44,16 +44,16 @@ export default function MenuPage() { title: "Quick Links", items: [ { label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, - { label: "Gallery", href: "#featured-gallery" }, - { label: "Reviews", href: "#testimonials" }, + { label: "Gallery", href: "/gallery" }, + { label: "Reviews", href: "/reviews" }, ], }, { title: "Order & Contact", items: [ { label: "Order Online", href: "/order-now" }, { label: "Call Us", href: "tel:2397850423" }, - { label: "Locations & Hours", href: "#footer" }, - { label: "Contact", href: "#footer" }, + { label: "Locations & Hours", href: "/locations" }, + { label: "Contact", href: "/contact" }, ], }, { @@ -73,6 +73,45 @@ export default function MenuPage() { }, ]; + // All 5 menu pages with their images + const menuPages = [ + { + id: "menu-page-1", name: "Menu Page 1", title: "Main Dishes", description: "Signature jerk meats, curry specialties, and authentic Caribbean proteins grilled fresh to order.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afn0reuidgadYlHif4J2xHlmq8/uploaded-1773931203656-6q5n09tb.jpg", imageAlt: "Menu Page 1 - Main Dishes", items: [ + { name: "Jerk Chicken Platter", price: "$15.95", variant: "Full Rack" }, + { name: "Curry Goat Platter", price: "$17.95", variant: "Tender & Aromatic" }, + { name: "Jerk Pork Platter", price: "$16.95", variant: "Juicy & Spiced" }, + ] + }, + { + id: "menu-page-2", name: "Menu Page 2", title: "Seafood & Appetizers", description: "Fresh seafood selections and delicious appetizers to start your island feast.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afn0reuidgadYlHif4J2xHlmq8/uploaded-1773931203656-k0zmv702.jpg", imageAlt: "Menu Page 2 - Seafood & Appetizers", items: [ + { name: "Escovitch Fish", price: "$18.95", variant: "Island Tradition" }, + { name: "Curry Shrimp Platter", price: "$16.95", variant: "Fresh Daily" }, + { name: "Conch Fritters Combo", price: "$12.95", variant: "6 Pieces" }, + ] + }, + { + id: "menu-page-3", name: "Menu Page 3", title: "Sandwiches & Wraps", description: "Fresh-grilled sandwiches and wraps packed with authentic Caribbean flavors.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afn0reuidgadYlHif4J2xHlmq8/uploaded-1773931203656-uswy1139.jpg", imageAlt: "Menu Page 3 - Sandwiches & Wraps", items: [ + { name: "Jerk Chicken Sandwich", price: "$11.95", variant: "Fresh Bread" }, + { name: "Curry Goat Sandwich", price: "$12.95", variant: "Hearty & Flavorful" }, + { name: "Pulled Pork Sandwich", price: "$11.95", variant: "Smoky & Tender" }, + ] + }, + { + id: "menu-page-4", name: "Menu Page 4", title: "Sides & Platters", description: "Classic Caribbean sides and complete platter combinations.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afn0reuidgadYlHif4J2xHlmq8/uploaded-1773931203657-pi7z5ykc.jpg", imageAlt: "Menu Page 4 - Sides & Platters", items: [ + { name: "Rice & Peas", price: "$4.95", variant: "Classic Caribbean" }, + { name: "Creamy Mac & Cheese", price: "$5.95", variant: "Comfort Classic" }, + { name: "Festival Dumplings", price: "$4.95", variant: "Golden & Crispy" }, + ] + }, + { + id: "menu-page-5", name: "Menu Page 5", title: "Beverages & Specials", description: "Refreshing tropical beverages and special combo selections.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Afn0reuidgadYlHif4J2xHlmq8/uploaded-1773931203657-qyiakzyt.jpg", imageAlt: "Menu Page 5 - Beverages & Specials", items: [ + { name: "Sorrel Punch", price: "$3.95", variant: "16 oz" }, + { name: "Island Ginger Beer", price: "$3.95", variant: "Refreshing" }, + { name: "Island Feast Combo", price: "$22.95", variant: "Jerk Chicken + Sides" }, + ] + }, + ]; + return ( - {/* Full Menu Display - All 5 Pages */} + {/* All 5 Menu Pages with Interactive Display */} + + {/* Additional Menu Details Section */} +
+
+

Menu Categories Overview

+ +
+ {menuPages.map((page) => ( +
+
+ {page.imageAlt} +
+

{page.name}: {page.title}

+

{page.description}

+
+
+ +
+ {page.items.map((item, idx) => ( +
+
+

{item.name}

+

{item.variant}

+
+

{item.price}

+
+ ))} +
+ + + Order Now + +
+ ))} +
+
{/* Footer with Local Map Info and Social Links */}