diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..3cfc654 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,93 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FaqDouble from '@/components/sections/faq/FaqDouble'; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; +import { Mail, HelpCircle, Zap, Shield, Rocket, Target, Sparkles, Crown, Users, Layers, Code } from "lucide-react"; + +export default function ContactPage() { + const navItems = [ + { name: "Features", id: "/#features" }, + { name: "Pricing", id: "/#pricing" }, + { name: "About", id: "/#about" }, + { name: "Contact", id: "/contact" }, + ]; + + return ( + + + + console.log('Contact form submitted with email:', email)} + /> + + + + + ); +}