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 + +
+
+
+
+ + +
+ ); +}