diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..b0cf0d1 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,90 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; +import { Mail, Phone, MapPin } from "lucide-react"; + +export default function ContactPage() { + return ( + + + +
+ console.log("Contact form submitted:", email)} + /> +
+ + +
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 282f49e..51b58e7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,8 +33,7 @@ export default function LandingPage() { { name: "Features", id: "features-bento" }, { name: "Pricing", id: "pricing" }, { name: "About", id: "about" }, - { name: "Blog", id: "blog" }, - { name: "Contact", id: "contact" }, + { name: "Contact", id: "/contact" }, ]} brandName="Mindflow AI" bottomLeftText="Global AI Innovation" @@ -309,7 +308,7 @@ export default function LandingPage() { { label: "About Us", href: "#about" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, - { label: "Contact", href: "#contact" }, + { label: "Contact", href: "/contact" }, ], }, {