Update src/app/page.tsx

This commit is contained in:
2026-05-24 09:18:21 +00:00
parent 72e3583849
commit e44c2e6a37

View File

@@ -2,11 +2,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import { Zap, Star, CheckCircle, Shield } from "lucide-react";
import { Zap, Star, CheckCircle, Shield, Mail, Phone, MapPin } from "lucide-react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
@@ -35,6 +35,7 @@ export default function LandingPage() {
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Services", id: "features" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
]}
brandName="C'est Doux"
@@ -134,19 +135,18 @@ export default function LandingPage() {
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
textboxLayout="split"
useInvertedBackground={false}
<FaqSplitText
faqs={[
{ id: "f1", title: "Do you offer free quotes?", content: "Yes, we provide free, no-obligation quotes for all local service requests." },
{ id: "f2", title: "What service area do you cover?", content: "We primarily serve the local community and surrounding suburbs." },
{ id: "f3", title: "How can I book a service?", content: "You can reach out via our contact form or give us a direct call." },
{ id: "f1", title: "Do you offer free quotes?", content: "Yes, we provide free, no-obligation quotes for all local service requests to help you budget effectively." },
{ id: "f2", title: "What service area do you cover?", content: "We serve the entire regional metro area. Contact us with your zip code to confirm availability." },
{ id: "f3", title: "How do I schedule a service?", content: "Fill out our secure contact form, and a representative will call you within one business day." },
{ id: "f4", title: "Are you licensed and insured?", content: "Yes, all our professionals are fully licensed, insured, and background-checked for your peace of mind." }
]}
imageSrc="http://img.b2bpic.net/free-photo/pleased-young-call-center-girl-wearing-headset-sitting-desk-putting-hand-chin-isolated-orange-background_141793-84138.jpg"
mediaAnimation="slide-up"
title="Common Questions"
description="Answers to the questions we get asked most often."
sideTitle="Frequently Asked Questions"
sideDescription="We've compiled answers to the most common queries to help you get started quickly and efficiently."
buttons={[{ text: "Contact Support", href: "#contact" }]}
faqsAnimation="slide-up"
useInvertedBackground={true}
/>
</div>
@@ -166,25 +166,28 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterBase
<FooterSimple
columns={[
{
title: "Services", items: [
{ label: "Consultation", href: "#" },
{ label: "Project Work", href: "#" },
{ label: "Residential Services", href: "#features" },
{ label: "Commercial Solutions", href: "#features" },
{ label: "Get a Quote", href: "#contact" }
],
},
{
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "About Us", href: "#about" },
{ label: "FAQ", href: "#faq" },
{ label: "Contact", href: "#contact" },
],
},
]}
logoText="C'est Doux"
bottomLeftText="© 2025 C'est Doux"
bottomRightText="hello@cestdoux.local"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}