Update src/app/page.tsx

This commit is contained in:
2026-05-11 21:20:16 +00:00
parent d7d9a20a24
commit c3bf61bcae

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 FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactText from '@/components/sections/contact/ContactText';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -134,43 +134,39 @@ export default function LandingPage() {
</div>
<div id="faq" data-section="faq">
<FaqDouble
textboxLayout="default"
useInvertedBackground={false}
<FaqSplitText
faqs={[
{ id: "q1", title: "Are your sprays safe for pets?", content: "Yes, we prioritize eco-friendly solutions and safe application methods for homes with children and pets." },
{ id: "q2", title: "How often should I get service?", content: "We recommend quarterly maintenance to ensure your property remains a protected zone." },
{ id: "q3", title: "What areas do you serve?", content: "We proudly serve all of San Angelo, Texas, and immediate surrounding areas." },
]}
title="Common Pest Questions"
description="Have questions? We have answers to help you stay pest-free."
sideTitle="Common Pest Questions"
sideDescription="Have questions? We have answers to help you stay pest-free."
faqsAnimation="slide-up"
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
<ContactText
text="Need a local expert in San Angelo? Contact us at (325) 555-0199 or visit our San Angelo office. Pioneer Pest Control is your community partner in pest-free living."
background={{ variant: "gradient-bars" }}
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Contact Us"
title="Get in Touch - San Angelo Office"
description="Serving the San Angelo area. Call us at (325) 555-0199 or visit our local office to schedule your inspection."
tagIcon={Phone}
buttons={[{ text: "Call Now", href: "tel:3255550199" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
<FooterBaseCard
logoText="Pioneer Pest Control"
columns={[
{ title: "Services", items: [{ label: "General Pest Control", href: "#" }, { label: "Termite Treatment", href: "#" }, { label: "Rodent Removal", href: "#" }, { label: "Mosquito Defense", href: "#" }] },
{ title: "Locations", items: [{ label: "San Angelo, TX", href: "#" }, { label: "West Texas Region", href: "#" }] },
{ title: "Company", items: [{ label: "About Us", href: "#about" }, { label: "Contact", href: "#contact" }] },
]}
logoText="Pioneer Pest Control"
copyrightText="© 2025 Pioneer Pest Control | Serving San Angelo"
copyrightText="© 2025 Pioneer Pest Control | Serving the San Angelo Community"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}