From a4ecac4044239a75f1daa74be72af153ea91118b Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 17:22:32 +0000 Subject: [PATCH] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 101 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 101 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..5cfefa4 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,101 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import ContactText from "@/components/sections/contact/ContactText"; +import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; +import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +}