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 ( + + + + +
+ +
+ + +
+
+ ); +}