Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1f7f18b26a | |||
| 62597428d4 | |||
| a027d82d71 | |||
| 5d11c303db | |||
| 6872f6e064 | |||
| f2958e9193 | |||
| 531a879328 | |||
| 95569de1ec | |||
| b7f3a3471a | |||
| 95ea0d03d1 | |||
| 6f95d86cdd | |||
| 692c480082 | |||
| a1e0564b21 | |||
| c92f60392b | |||
| 545254d6fd | |||
| 290dcdb25b | |||
| ebd0e0e76d | |||
| 635eb9e381 | |||
| 827267627c | |||
| 062bc2902e |
48
src/app/contact/page.tsx
Normal file
48
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
"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 defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
brandName="LaunchPad Local"
|
||||||
|
navItems={[
|
||||||
|
{ name: "Work", id: "work" },
|
||||||
|
{ name: "Process", id: "process" },
|
||||||
|
{ name: "FAQ", id: "faq" },
|
||||||
|
{ name: "Contact", id: "contact" },
|
||||||
|
]}
|
||||||
|
button={{ text: "Book Consultation", href: "/contact" }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div id="contact" data-section="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..." }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
buttonText="Submit Request"
|
||||||
|
onSubmit={(email) => console.log("Consultation requested for:", email)}
|
||||||
|
/>
|
||||||
|
</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>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -4,7 +4,6 @@ import { Inter } from "next/font/google";
|
|||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import "@/lib/gsap-setup";
|
import "@/lib/gsap-setup";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
|
|
||||||
const halant = Halant({
|
const halant = Halant({
|
||||||
@@ -19,8 +18,8 @@ const inter = Inter({
|
|||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: 'LaunchPad Local | Web Design for Local Business',
|
title: 'Contact Us | LaunchPad Local',
|
||||||
description: 'Professional web design and local SEO services to help your business grow online.',
|
description: 'Have questions or ready to start your project? Get in touch with the LaunchPad Local team today.',
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -34,7 +33,7 @@ export default function RootLayout({
|
|||||||
<body
|
<body
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
className={`${halant.variable} ${inter.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ export default function LaunchPadLocalPage() {
|
|||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "faq" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
]}
|
]}
|
||||||
button={{ text: "Get Started", href: "#contact" }}
|
button={{ text: "Book Consultation", href: "/contact" }}
|
||||||
/>
|
/>
|
||||||
<HeroSplitDoubleCarousel
|
<HeroSplitDoubleCarousel
|
||||||
title="Launch Your Local Business Online"
|
title="Launch Your Local Business Online"
|
||||||
@@ -45,8 +45,8 @@ export default function LaunchPadLocalPage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
background={{ variant: "canvas-reveal" }}
|
background={{ variant: "canvas-reveal" }}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Claim Your Spot", href: "#contact" },
|
{ text: "Book Consultation", href: "/contact" },
|
||||||
{ text: "See Projects", href: "#work" },
|
{ text: "View Our Portfolio", href: "#work" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
carouselPosition="right"
|
carouselPosition="right"
|
||||||
@@ -75,22 +75,24 @@ export default function LaunchPadLocalPage() {
|
|||||||
features={[]}
|
features={[]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<FeatureCardTwentySix
|
<div id="work">
|
||||||
title="Recent Local Launches"
|
<FeatureCardTwentySix
|
||||||
description="We partner with hardworking business owners to bring their vision to the screen."
|
title="Recent Local Launches"
|
||||||
textboxLayout="default"
|
description="We partner with hardworking business owners to bring their vision to the screen."
|
||||||
useInvertedBackground={false}
|
textboxLayout="default"
|
||||||
buttons={[{ text: "View Our Portfolio", href: "#work" }]}
|
useInvertedBackground={false}
|
||||||
buttonAnimation="slide-up"
|
buttons={[{ text: "View Our Portfolio", href: "#work" }]}
|
||||||
cardClassName="!h-auto aspect-video"
|
buttonAnimation="slide-up"
|
||||||
features={[
|
cardClassName="!h-auto aspect-video"
|
||||||
{ title: "The Daily Grind", description: "Local Coffee Roastery Site", imageSrc: "http://img.b2bpic.net/free-photo/homemade-recipe-food-nutrition-appetite_53876-133764.jpg", buttonIcon: ArrowUpRight },
|
features={[
|
||||||
{ title: "City Plumbing", description: "Emergency service portal", imageSrc: "http://img.b2bpic.net/free-photo/man-doing-household-tasks_23-2151733205.jpg", buttonIcon: ArrowUpRight },
|
{ title: "The Daily Grind", description: "Local Coffee Roastery Site", imageSrc: "http://img.b2bpic.net/free-photo/homemade-recipe-food-nutrition-appetite_53876-133764.jpg", buttonIcon: ArrowUpRight },
|
||||||
{ title: "Bloom Landscapes", description: "Residential gardening showcase", imageSrc: "http://img.b2bpic.net/free-photo/investors-interested-factory-analyze-revenue-streams-green-screen-monitor_482257-123486.jpg", buttonIcon: ArrowUpRight },
|
{ title: "City Plumbing", description: "Emergency service portal", imageSrc: "http://img.b2bpic.net/free-photo/man-doing-household-tasks_23-2151733205.jpg", buttonIcon: ArrowUpRight },
|
||||||
{ title: "Summit Auto", description: "Full-service repair shop site", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-looking-laptop_23-2150171222.jpg", buttonIcon: ArrowUpRight },
|
{ title: "Bloom Landscapes", description: "Residential gardening showcase", imageSrc: "http://img.b2bpic.net/free-photo/investors-interested-factory-analyze-revenue-streams-green-screen-monitor_482257-123486.jpg", buttonIcon: ArrowUpRight },
|
||||||
{ title: "Elite Fitness", description: "Training membership portal", imageSrc: "http://img.b2bpic.net/free-photo/physical-activity-stats-around-person_23-2150163402.jpg", buttonIcon: ArrowUpRight },
|
{ title: "Summit Auto", description: "Full-service repair shop site", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-looking-laptop_23-2150171222.jpg", buttonIcon: ArrowUpRight },
|
||||||
]}
|
{ title: "Elite Fitness", description: "Training membership portal", imageSrc: "http://img.b2bpic.net/free-photo/physical-activity-stats-around-person_23-2150163402.jpg", buttonIcon: ArrowUpRight },
|
||||||
/>
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<TestimonialCardFifteen
|
<TestimonialCardFifteen
|
||||||
testimonial="LaunchPad Local built our site in under two weeks. We've seen a massive increase in inbound local inquiries ever since. Incredible ROI."
|
testimonial="LaunchPad Local built our site in under two weeks. We've seen a massive increase in inbound local inquiries ever since. Incredible ROI."
|
||||||
rating={5}
|
rating={5}
|
||||||
@@ -117,7 +119,7 @@ export default function LaunchPadLocalPage() {
|
|||||||
tag="Get Started"
|
tag="Get Started"
|
||||||
title="Ready to Launch Your Local Brand?"
|
title="Ready to Launch Your Local Brand?"
|
||||||
description="Take your business to the next level. Let's build your new website today."
|
description="Take your business to the next level. Let's build your new website today."
|
||||||
buttons={[{ text: "Book a Consultation", href: "#contact" }]}
|
buttons={[{ text: "Book a Consultation", href: "/contact" }]}
|
||||||
background={{ variant: "rotated-rays-animated" }}
|
background={{ variant: "rotated-rays-animated" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
/>
|
/>
|
||||||
@@ -125,7 +127,7 @@ export default function LaunchPadLocalPage() {
|
|||||||
logoText="LaunchPad Local"
|
logoText="LaunchPad Local"
|
||||||
copyrightText="© 2026 | LaunchPad Local"
|
copyrightText="© 2026 | LaunchPad Local"
|
||||||
columns={[
|
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: "Services", items: [{ label: "Web Design", href: "#" }, { label: "Local SEO", href: "#" }] },
|
||||||
{ title: "Resources", items: [{ label: "Blog", href: "#" }, { label: "Guides", href: "#" }] },
|
{ title: "Resources", items: [{ label: "Blog", href: "#" }, { label: "Guides", href: "#" }] },
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user