From f6c9e0d741d389992ce885d3376540b6c0762b44 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 06:37:07 +0000 Subject: [PATCH] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 339 +++++++++++++----------------------------- 1 file changed, 106 insertions(+), 233 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index ca945a0..3df8b7d 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -1,248 +1,121 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; -import FooterBase from '@/components/sections/footer/FooterBase'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; -import { Sparkles } from "lucide-react"; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; +import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { Flame, Users, DollarSign, Smile, Table, Utensils } from 'lucide-react'; + +export default function MenuPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Menu", id: "/menu" }, + { name: "Contact", id: "/contact" } + ]; + + const footerColumns = [ + { + title: "Quick Links", items: [ + { label: "Home", href: "/" }, + { label: "Menu", href: "/menu" }, + { label: "Contact", href: "/contact" } + ] + }, + { + title: "Contact", items: [ + { label: "Call Us", href: "tel:09182950479" }, + { label: "WhatsApp", href: "https://wa.me/919182950479" }, + { label: "Directions", href: "https://www.google.com/maps/dir/?api=1&destination=TAJ+Family+Restaurant,+Ambedkar+Nagar,+Shanti+Nagar,+Sircilla,+Telangana+505301" }, + { label: "Email", href: "mailto:info@tajfamilyrestaurant.com" } + ] + } + ]; -export default function LandingPage() { return ( - - + - + -
- -
+
+ +
-
- -
+
+ +
- -
+
); }