From ae0494a201a0f4fa7635dcda9d2e4ea9d95a0186 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 15:00:42 +0000 Subject: [PATCH] Add src/app/contact-us/page.tsx --- src/app/contact-us/page.tsx | 111 ++++++++++++++++++++++++++++++++++++ 1 file changed, 111 insertions(+) create mode 100644 src/app/contact-us/page.tsx diff --git a/src/app/contact-us/page.tsx b/src/app/contact-us/page.tsx new file mode 100644 index 0000000..cff4b85 --- /dev/null +++ b/src/app/contact-us/page.tsx @@ -0,0 +1,111 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; + +export default function ContactUsPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}