Merge version_5 into main #6

Merged
bender merged 2 commits from version_5 into main 2026-04-11 19:51:55 +00:00
2 changed files with 47 additions and 4 deletions

43
src/app/contact/page.tsx Normal file
View File

@@ -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 (
<ThemeProvider>
<NavbarLayoutFloatingOverlay
brandName="LaunchPad Local"
navItems={[
{ name: "Work", id: "work" },
{ name: "Process", id: "process" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
]}
button={{ text: "Get Started", href: "/contact" }}
/>
<div id="contact">
<ContactSplitForm
title="Let's Connect"
description="Have questions or ready to start your project? Send us a message, email us at hello@launchpadlocal.com, or give us a call to schedule your consultation."
inputs={[
{ name: "name", type: "text", placeholder: "Full Name" },
{ name: "email", type: "email", placeholder: "Email Address" },
]}
textarea={{ name: "message", placeholder: "Tell us about your project..." }}
/>
</div>
<FooterBase
logoText="LaunchPad Local"
copyrightText="© 2026 | LaunchPad Local"
columns={[
{ 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: "#" }] },
]}
/>
</ThemeProvider>
);
}

View File

@@ -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" }}
/>
<HeroSplitDoubleCarousel
title="Launch Your Local Business Online"
@@ -45,7 +45,7 @@ export default function LaunchPadLocalPage() {
tagAnimation="slide-up"
background={{ variant: "canvas-reveal" }}
buttons={[
{ text: "Claim Your Spot", href: "/payment" },
{ text: "Claim Your Spot", href: "/contact" },
{ text: "See Projects", href: "#work" },
]}
buttonAnimation="slide-up"
@@ -117,7 +117,7 @@ export default function LaunchPadLocalPage() {
tag="Get Started"
title="Ready to Launch Your Local Brand?"
description="Take your business to the next level. Let's build your new website today."
buttons={[{ text: "Book a Consultation", href: "/payment" }]}
buttons={[{ text: "Book a Consultation", href: "/contact" }]}
background={{ variant: "rotated-rays-animated" }}
useInvertedBackground={false}
/>
@@ -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: "#" }] },
]}