diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..0648b78 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,14 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; + +export default function ContactPage() { + return ( + + + + + ); +} \ No newline at end of file