From 95ea0d03d1b1bc6d1b55809f8a139c07c3d611a2 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 11 Apr 2026 19:51:51 +0000 Subject: [PATCH 1/2] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 43 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 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..9e9e40d --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,43 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterBase from "@/components/sections/footer/FooterBase"; + +export default function ContactPage() { + return ( + + +
+ +
+ +
+ ); +} \ No newline at end of file -- 2.49.1 From b7f3a3471a7d3250b493a54e4295dacf806fe487 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 11 Apr 2026 19:51:52 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6252f55..dffc4aa 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -35,7 +35,7 @@ export default function LaunchPadLocalPage() { { name: "FAQ", id: "faq" }, { name: "Contact", id: "contact" }, ]} - button={{ text: "Get Started", href: "/payment" }} + button={{ text: "Get Started", href: "/contact" }} /> @@ -125,7 +125,7 @@ export default function LaunchPadLocalPage() { logoText="LaunchPad Local" copyrightText="© 2026 | LaunchPad Local" columns={[ - { title: "Company", items: [{ label: "About", href: "#" }, { label: "Contact", href: "#" }] }, + { title: "Company", items: [{ label: "About", href: "#" }, { label: "Contact", href: "/contact" }] }, { title: "Services", items: [{ label: "Web Design", href: "#" }, { label: "Local SEO", href: "#" }] }, { title: "Resources", items: [{ label: "Blog", href: "#" }, { label: "Guides", href: "#" }] }, ]} -- 2.49.1