From 09480331256a145f3f34af99f45fe2640facf5fd Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 11:29:14 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 163 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 163 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..cf9c2bd --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,163 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroOverlay from '@/components/sections/hero/HeroOverlay'; +import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Phone, Mail, MapPin, Clock, AlertCircle, CheckCircle } from 'lucide-react'; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+
+ +
+ +
+ + +
+ ); +}