From c14e2a93cb2be74a1352059f27be57ddcb29cff9 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 10:13:44 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 133 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 133 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..08b6b2d --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,133 @@ +"use client"; + +import { Phone, MessageCircle, MapPin } from "lucide-react"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function ContactPage() { + const handleFormSubmit = (data: Record) => { + console.log("Form submitted:", data); + }; + + return ( + + + +
+ +
+ +
+
+

Contact Information

+ +
+
+
+ +
+

Phone

+

Call us anytime

+ + 07702470459 + +
+ +
+
+ +
+

WhatsApp

+

Quick response via WhatsApp

+ + Message on WhatsApp + +
+ +
+
+ +
+

Location

+

Visit our store

+ + SR Nagar, Hyderabad + +
+
+
+
+ + +
+ ); +}