Update src/app/page.tsx

This commit is contained in:
2026-03-26 04:18:52 +00:00
parent 63ef3d0a60
commit 7d463cd93e

View File

@@ -2,7 +2,7 @@
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 FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
@@ -143,16 +143,17 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
<ContactCTA
useInvertedBackground={false}
background={{
variant: "radial-gradient"}}
tag="Contact Us"
title="Ready for a Sparkling Home?"
description="Whether you need recurring home cleaning or a trusted team to keep your space looking its best, Sparkle Clean is here to provide a service experience that feels polished from start to finish. We are located at 3104 E Camelback Rd #556, Phoenix, AZ 85016, and you can reach us at (602) 765-3080."
inputPlaceholder="Your Email Address"
buttonText="Get a Quote"
termsText="By submitting your request, you agree to our privacy policy and terms of service."
buttons={[
{
text: "Get a Quote", href: "#contact"}
]}
/>
</div>
@@ -195,4 +196,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}