Merge version_5 into main #6
43
src/app/contact/page.tsx
Normal file
43
src/app/contact/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
@@ -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: "#" }] },
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user