diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..077db44 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,67 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; + +export default function ContactPage() { + return ( + + + +
+ +
+ + +
+ ); +}