diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..6aeb012 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,68 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import { Phone, Facebook, Linkedin, Instagram } from "lucide-react"; + +export default function ContactPage() { + return ( + + + +
+ console.log('Contact form submission:', email)} + className="py-20" + /> +
+ + +
+ ); +}