Compare commits
29 Commits
version_1
...
version_10
| Author | SHA1 | Date | |
|---|---|---|---|
| 847f5ccfdf | |||
| 5f9bee6363 | |||
| 9bb1f6b9b3 | |||
| 03859d0fb6 | |||
| b45202b63b | |||
| 968e044f5c | |||
| c9c87f5e3c | |||
| 1f7f18b26a | |||
| 62597428d4 | |||
| a027d82d71 | |||
| 5d11c303db | |||
| 6872f6e064 | |||
| f2958e9193 | |||
| 531a879328 | |||
| 95569de1ec | |||
| b7f3a3471a | |||
| 95ea0d03d1 | |||
| 6f95d86cdd | |||
| 692c480082 | |||
| a1e0564b21 | |||
| c92f60392b | |||
| 545254d6fd | |||
| 290dcdb25b | |||
| ebd0e0e76d | |||
| 635eb9e381 | |||
| 827267627c | |||
| 02c81e0b47 | |||
| 062bc2902e | |||
| 51884f6795 |
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: "/about" }, { label: "Contact", href: "/contact" }] },
|
||||
{ title: "Services", items: [{ label: "Web Design", href: "/services" }, { label: "Local SEO", href: "/services" }] },
|
||||
{ title: "Resources", items: [{ label: "Blog", href: "/blog" }, { label: "Guides", href: "/guides" }] },
|
||||
]}
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -4,7 +4,6 @@ import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import "@/lib/gsap-setup";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
|
||||
const halant = Halant({
|
||||
@@ -19,8 +18,8 @@ const inter = Inter({
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'LaunchPad Local | Web Design for Local Business',
|
||||
description: 'Professional web design and local SEO services to help your business grow online.',
|
||||
title: 'Contact Us | LaunchPad Local',
|
||||
description: 'Have questions or ready to start your project? Get in touch with the LaunchPad Local team today.',
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -34,7 +33,7 @@ export default function RootLayout({
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
|
||||
{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
|
||||
116
src/app/page.tsx
116
src/app/page.tsx
@@ -3,17 +3,14 @@
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel";
|
||||
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
|
||||
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
|
||||
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
|
||||
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
|
||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||
import TeamCardFive from "@/components/sections/team/TeamCardFive";
|
||||
import FaqBase from "@/components/sections/faq/FaqBase";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||
import { Sparkles, Search, ArrowUpRight, Monitor, Shield, Zap, Puzzle, TrendingUp, Lock, Phone, MessageCircle, BookOpen, Tv, Camera, Music, Settings, Award, Users } from "lucide-react";
|
||||
import { Sparkles, ArrowUpRight, Award, Users, TrendingUp } from "lucide-react";
|
||||
|
||||
export default function LaunchPadLocalPage() {
|
||||
return (
|
||||
@@ -38,81 +35,48 @@ export default function LaunchPadLocalPage() {
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
button={{ text: "Get Started", href: "#contact" }}
|
||||
button={{ text: "Book Consultation", href: "/contact" }}
|
||||
/>
|
||||
<HeroSplitDoubleCarousel
|
||||
<HeroOverlay
|
||||
title="Launch Your Local Business Online"
|
||||
description="Stop being invisible. We design, build, and launch high-converting, professional websites specifically for local businesses ready to grow."
|
||||
tag="Web Design for Local Pros"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "canvas-reveal" }}
|
||||
buttons={[
|
||||
{ text: "Claim Your Spot", href: "#contact" },
|
||||
{ text: "See Projects", href: "#work" },
|
||||
{ text: "Book Consultation", href: "/contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
carouselPosition="right"
|
||||
leftCarouselItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/man-using-tablet-drinking-coffee-cafe-bar_1170-638.jpg", imageAlt: "Modern local cafe website" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-posing-studio_23-2150275711.jpg", imageAlt: "Plumbing service professional landing page" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/happy-homosexual-female-lesbian-couple-enjoys-free-wifi-have-fun-coffee-shop-together-use-generic-laptop-computer-check-verify-account-make-online-shopping-use-banking-purchase_273609-2325.jpg", imageAlt: "Boutique store digital presence" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/warehouse-associate-fulfilling-purchases_482257-75289.jpg", imageAlt: "Contractor business website" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/demo-digital-device_23-2149243957.jpg", imageAlt: "Consulting firm website" },
|
||||
]}
|
||||
rightCarouselItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/physical-activity-stats-around-person_23-2150163358.jpg", imageAlt: "Local fitness studio site" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/motor-service-maintenance-motorbike-concept_53876-120589.jpg", imageAlt: "Auto repair business landing page" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/gardening-planting-concept_658428-227.jpg", imageAlt: "Landscaping services portfolio" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/casual-businessman-sitting-dark_53876-101864.jpg", imageAlt: "Legal services portal" },
|
||||
]}
|
||||
carouselItemClassName="!aspect-[4/5]"
|
||||
/>
|
||||
<FeatureBento
|
||||
title="Solutions That Drive Local Growth"
|
||||
description="We don't just build pages; we build revenue engines for your community business."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
buttons={[{ text: "Explore Services", href: "#services" }]}
|
||||
buttonAnimation="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "SEO Dominance", description: "Be the first name your neighbors see when they search for your services.", bentoComponent: "marquee", centerIcon: Search,
|
||||
variant: "text", texts: ["Local Keywords", "Map Pack", "Organic Growth", "Neighborhood Traffic", "Rankings", "Google Business"],
|
||||
},
|
||||
{
|
||||
title: "Fast Local Web", description: "Lightning-fast custom builds to keep your local customers engaged.", bentoComponent: "media-stack", items: [
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-nutritional-counter-app_23-2149880604.jpg", imageAlt: "Fast loading store" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/online-ticket-booking_53876-65475.jpg", imageAlt: "Clean service interface" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/consult-advice-information-serveice-sharing-concept_53876-125587.jpg", imageAlt: "Professional landing page" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Business Identity", description: "A brand identity that builds instant trust with your local market.", bentoComponent: "media-stack", items: [
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/empty-business-card-envelope_23-2148500520.jpg", imageAlt: "Brand kit 1" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/still-life-graphic-design-office_23-2151345402.jpg", imageAlt: "Brand kit 2" },
|
||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=mq1usc", imageAlt: "Brand kit 3" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
<FeatureCardTwentySix
|
||||
title="Recent Local Launches"
|
||||
description="We partner with hardworking business owners to bring their vision to the screen."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "View Our Portfolio", href: "#work" }]}
|
||||
buttonAnimation="slide-up"
|
||||
cardClassName="!h-auto aspect-video"
|
||||
features={[
|
||||
{ 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: "City Plumbing", description: "Emergency service portal", imageSrc: "http://img.b2bpic.net/free-photo/man-doing-household-tasks_23-2151733205.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: "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 },
|
||||
]}
|
||||
showBlur={true}
|
||||
textPosition="bottom"
|
||||
/>
|
||||
<div id="services">
|
||||
<FeatureCardMedia
|
||||
title="Building websites for your business"
|
||||
description="Our custom web design solutions help local businesses reach more customers and grow their digital footprint effectively."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
features={[]}
|
||||
/>
|
||||
</div>
|
||||
<div id="work">
|
||||
<FeatureCardTwentySix
|
||||
title="Recent Local Launches"
|
||||
description="We partner with hardworking business owners to bring their vision to the screen."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttonAnimation="slide-up"
|
||||
cardClassName="!h-auto aspect-video"
|
||||
features={[
|
||||
{ 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: "City Plumbing", description: "Emergency service portal", imageSrc: "http://img.b2bpic.net/free-photo/man-doing-household-tasks_23-2151733205.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: "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
|
||||
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}
|
||||
@@ -139,7 +103,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: "#contact" }]}
|
||||
buttons={[{ text: "Book a Consultation", href: "/contact" }]}
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
@@ -147,12 +111,12 @@ export default function LaunchPadLocalPage() {
|
||||
logoText="LaunchPad Local"
|
||||
copyrightText="© 2026 | LaunchPad Local"
|
||||
columns={[
|
||||
{ title: "Company", items: [{ label: "About", href: "#" }, { label: "Contact", href: "#" }] },
|
||||
{ title: "Services", items: [{ label: "Web Design", href: "#" }, { label: "Local SEO", href: "#" }] },
|
||||
{ title: "Resources", items: [{ label: "Blog", href: "#" }, { label: "Guides", href: "#" }] },
|
||||
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
|
||||
{ title: "Services", items: [{ label: "Web Design", href: "/services" }, { label: "Local SEO", href: "/services" }] },
|
||||
{ title: "Resources", items: [{ label: "Blog", href: "/blog" }, { label: "Guides", href: "/guides" }] },
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user