From 2dc83c59a46f9955f6f1284c6df2d9302dc9d90d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 01:51:24 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 107 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 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..49f11ab --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,107 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { useRouter } from 'next/navigation'; + +export default function ContactPage() { + const router = useRouter(); + + const handleSubmit = (data: Record) => { + console.log('Contact form submitted:', data); + // Here you would typically send the data to a backend service + // For now, we'll just log it and redirect + alert('Thank you for contacting us! We will get back to you soon.'); + router.push('/'); + }; + + return ( + + + +
+ +
+ + +
+ ); +}