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