Switch to version 2: remove src/pages/HomePage/sections/Faq.tsx

This commit is contained in:
2026-06-21 00:10:01 +00:00
parent 568953aa16
commit 9ea2973624

View File

@@ -1,40 +0,0 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "faq" section.
import React from 'react';
import FaqSimple from "@/components/sections/faq/FaqSimple";
export default function FaqSection(): React.JSX.Element {
return (
<div id="faq" data-section="faq">
<FaqSimple
tag="FAQ"
title="Frequently Asked Questions"
description="Everything you need to know about our HVAC services."
primaryButton={{ text: "Contact Us", href: "#contact" }}
items={[
{
question: "Do you offer 24/7 emergency service?",
answer: "Yes! We provide round-the-clock emergency HVAC service. If your system breaks down in the middle of the night or on a weekend, call us and a technician will be at your door as soon as possible.",
},
{
question: "How often should I service my HVAC system?",
answer: "We recommend servicing your system at least twice a year — once before summer for cooling and once before winter for heating. Regular maintenance extends your system's life and keeps energy bills low.",
},
{
question: "What brands do you install and repair?",
answer: "We work with all major HVAC brands including Carrier, Trane, Lennox, Daikin, Rheem, and more. Our technicians are trained and certified across multiple manufacturers.",
},
{
question: "Do you offer financing options?",
answer: "Yes, we offer flexible financing plans for new installations and major repairs. Ask about our 0% interest options so you can stay comfortable without straining your budget.",
},
{
question: "How long does a typical installation take?",
answer: "Most residential HVAC installations are completed in one day. Larger commercial projects may take 2-3 days depending on the scope. We'll give you an accurate timeline during your consultation.",
},
]}
/>
</div>
);
}