From 653d988155fa8ac5128939189d6cd0f43b847354 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 14:27:26 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 121 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 121 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..f8c5be5 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,121 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; +import { Phone, MessageCircle, Mail } from "lucide-react"; + +export default function ContactPage() { + const handleSubmit = (data: Record) => { + console.log("Form submitted:", data); + // Handle form submission logic here (e.g., send to API) + alert("Your request has been sent! We will get back to you shortly."); + }; + + return ( + + + + +
+ +
+ +
+ +
+ + +
+
+ ); +}