diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..535012c --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,152 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; + +export default function ContactPage() { + return ( + + + + +
+ console.log("Inquiry submitted:", email)} + background={{ variant: "plain" }} + useInvertedBackground={false} + /> +
+ +
+ +
+ + +
+
+ ); +}