From 3e5706a333375b8dffb9844b1c7be9ab79bf8b5c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 14:31:44 +0000 Subject: [PATCH] Switch to version 3: added src/app/contact-us/page.tsx --- src/app/contact-us/page.tsx | 47 +++++++++++++++++++++++++++++++++++++ 1 file changed, 47 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..566ddde --- /dev/null +++ b/src/app/contact-us/page.tsx @@ -0,0 +1,47 @@ +"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