diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..133527d --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,106 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import { Mail, Zap } from 'lucide-react'; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+ { + console.log('Contact form submitted with email:', email); + // Handle form submission here + }} + /> +
+ + +
+ ); +}