From cc4f2576c472c8322b8fe1cfef269e78a65f79f3 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 18:32:52 +0000 Subject: [PATCH 1/2] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 90 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 src/app/contact/page.tsx 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)} + /> +
+ + +
+ ); +} -- 2.49.1 From 1eb7c8507699cdcc62ca7cff38805d1df0591e18 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 18:32:53 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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" }, ], }, { -- 2.49.1