7 Commits

Author SHA1 Message Date
847f5ccfdf Update src/app/page.tsx 2026-04-11 20:12:09 +00:00
5f9bee6363 Merge version_9 into main
Merge version_9 into main
2026-04-11 20:01:09 +00:00
9bb1f6b9b3 Update src/app/page.tsx 2026-04-11 20:01:03 +00:00
03859d0fb6 Update src/app/contact/page.tsx 2026-04-11 20:01:03 +00:00
b45202b63b Merge version_8 into main
Merge version_8 into main
2026-04-11 19:59:13 +00:00
968e044f5c Update src/app/page.tsx 2026-04-11 19:59:10 +00:00
c9c87f5e3c Merge version_7 into main
Merge version_7 into main
2026-04-11 19:56:40 +00:00
2 changed files with 12 additions and 28 deletions

View File

@@ -38,11 +38,11 @@ export default function ContactPage() {
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: "#" }] },
{ 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>
);
}
}

View File

@@ -3,7 +3,7 @@
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 HeroOverlay from "@/components/sections/hero/HeroOverlay";
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
@@ -37,33 +37,18 @@ export default function LaunchPadLocalPage() {
]}
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: "Book Consultation", href: "/contact" },
{ text: "View Our Portfolio", href: "#work" },
]}
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]"
showBlur={true}
textPosition="bottom"
/>
<div id="services">
<FeatureCardMedia
@@ -81,7 +66,6 @@ export default function LaunchPadLocalPage() {
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={[
@@ -127,12 +111,12 @@ export default function LaunchPadLocalPage() {
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: "#" }] },
{ 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>
);
}
}