From 7582140540783b4d56f9eb3ac2b52d90b2e15676 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 08:53:17 +0000 Subject: [PATCH] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 187 ++++++++++++++++++++++++------------------ 1 file changed, 106 insertions(+), 81 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index ad840ca..8132c34 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -2,11 +2,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo"; import ProductCardOne from "@/components/sections/product/ProductCardOne"; +import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; +import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterCard from "@/components/sections/footer/FooterCard"; -import { Star, Users, Zap, Phone, MapPin, MessageCircle } from "lucide-react"; +import { Star, Users, Zap, Phone, MapPin, MessageCircle, Utensils } from "lucide-react"; export default function MenuPage() { const navItems = [ @@ -40,86 +43,115 @@ export default function MenuPage() { /> - {/* Full Menu Section */} + {/* Hero Section */} +
+ +
+ + {/* Menu Section */} - {/* Why Our Food Section */} + {/* About Section */} +
+ +
+ + {/* Reviews Section */} +
+ +
+ + {/* Metrics Section */}
- {/* Order Contact Section */} + {/* Contact Section */}
@@ -156,19 +187,13 @@ export default function MenuPage() { socialLinks={[ { icon: Phone, - href: "tel:+919876543210", - ariaLabel: "Call us", - }, + href: "tel:+919876543210", ariaLabel: "Call us"}, { icon: MapPin, - href: "https://maps.google.com", - ariaLabel: "Find us on Google Maps", - }, + href: "https://maps.google.com", ariaLabel: "Find us on Google Maps"}, { icon: MessageCircle, - href: "https://wa.me/919876543210", - ariaLabel: "WhatsApp us", - }, + href: "https://wa.me/919876543210", ariaLabel: "WhatsApp us"}, ]} /> -- 2.49.1