From 9014c7d3850968f2472ec8de66b8a0a552e66908 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 11:30:46 +0000 Subject: [PATCH] Add src/app/contact-us/page.tsx --- src/app/contact-us/page.tsx | 44 +++++++++++++++++++++++++++++++++++++ 1 file changed, 44 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..300bb02 --- /dev/null +++ b/src/app/contact-us/page.tsx @@ -0,0 +1,44 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterBase from "@/components/sections/footer/FooterBase"; + +export default function ContactUsPage() { + return ( + + + +
+ +
+ +
+
+ ); +} \ No newline at end of file