From 2f14e4497566a110cbbc36e02e217078ef7dd034 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 05:00:37 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 177 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 177 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..f4d00d5 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,177 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FaqBase from '@/components/sections/faq/FaqBase'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+ console.log('Newsletter signup:', email)} + /> +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file