3 Commits

Author SHA1 Message Date
79ea3380f8 Merge version_2 into main
Merge version_2 into main
2026-05-13 13:22:35 +00:00
081b1b657a Update src/app/page.tsx 2026-05-13 13:22:32 +00:00
a9a69a6e8e Merge version_1 into main
Merge version_1 into main
2026-05-13 13:19:58 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import FooterCard from '@/components/sections/footer/FooterCard';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
@@ -147,19 +147,24 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={true}
background={{ variant: "gradient-bars" }}
<ContactCTA
tag="Get in touch"
title="Need Help Today?"
description="Request your free estimate now or call us to talk to a professional."
buttonText="Request Quote"
buttons={[{ text: "Request Quote", href: "#" }]}
background={{ variant: "gradient-bars" }}
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
<FooterBaseCard
logoText="LocalPro Service"
columns={[
{ title: "Services", items: [{ label: "General Repair", href: "#" }, { label: "Installation", href: "#" }, { label: "Maintenance", href: "#" }] },
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Careers", href: "#" }, { label: "Blog", href: "#" }] },
{ title: "Support", items: [{ label: "Contact", href: "#" }, { label: "FAQ", href: "#" }, { label: "Legal", href: "#" }] }
]}
copyrightText="© 2025 LocalPro Service | Trusted Neighborhood Experts"
/>
</div>