From edae1a7d3cbebf6796737cfc4ab7970a564ccf27 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 06:33:05 +0000 Subject: [PATCH] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 261 +++++++++++++++------------------------ 1 file changed, 101 insertions(+), 160 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 11b0d0b..375140f 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -1,174 +1,115 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; -import FooterBase from '@/components/sections/footer/FooterBase'; -import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +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 ContactPage() { + const navItems = [ + { name: "Home", href: "/" }, + { name: "Menu", href: "/menu" }, + { name: "Contact", href: "/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 ( - - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
- - -
+
); -} \ No newline at end of file +}