Update src/app/page.tsx

This commit is contained in:
2026-05-15 09:02:14 +00:00
parent 5378059fa9
commit 5c8ed36b75

View File

@@ -35,6 +35,7 @@ export default function LandingPage() {
{ name: "About", id: "about" },
{ name: "Services", id: "features" },
{ name: "Products", id: "products" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
]}
brandName="ClimateMaster"
@@ -151,10 +152,11 @@ export default function LandingPage() {
faqs={[
{ id: "f1", title: "How often should I clean my air ducts?", content: "Generally every 3-5 years, depending on household dust and pets." },
{ id: "f2", title: "Is chimney inspection necessary?", content: "Yes, annual inspections prevent fire hazards and carbon monoxide buildup." },
{ id: "f3", title: "What are signs of poor indoor air quality?", content: "Increased allergy symptoms, dust buildup, or unpleasant smells." },
{ id: "f3", title: "How much does a routine cleaning cost?", content: "Pricing varies by project size, starting at $299 for basic residential services." },
{ id: "f4", title: "Do you charge for initial inspections?", content: "Initial inspections are $79, which is credited toward any repairs or services performed." },
]}
title="Frequently Asked Questions"
description="Answers regarding safety and maintenance for your HVAC and chimney systems."
description="Answers regarding safety and maintenance for your HVAC and chimney systems. Clear pricing to help plan your home care."
faqsAnimation="slide-up"
/>
</div>
@@ -177,4 +179,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}