diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..1d0cbcb --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,29 @@ +"use client" + +import React from 'react'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; + +export default function ContactPage() { + return ( + + +
+ alert("Message sent!")} + /> +
+
+ ); +} \ No newline at end of file