Merge version_3 into main #5

Merged
bender merged 1 commits from version_3 into main 2026-05-10 23:54:06 +00:00

View File

@@ -2,17 +2,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import { CheckCircle, Shield, Sparkles, MapPin } from "lucide-react";
export default function LandingPage() {
@@ -117,11 +114,13 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
<ContactSplit
tag="Get In Touch"
title="Schedule Your Service"
description="Fill out the form below to request a service visit for your pool. Our team will contact you shortly to confirm your booking."
background={{ variant: "gradient-bars" }}
text="Ready for a cleaner, clearer pool experience? Contact Wavy Pools today for a free on-site consultation."
buttons={[{ text: "Contact Us Now", href: "#contact" }]}
useInvertedBackground={false}
onSubmit={(email) => console.log("Service requested for:", email)}
/>
</div>
@@ -139,4 +138,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}