10 Commits

Author SHA1 Message Date
73e2bfa502 Switch to version 6: modified src/pages/HomePage.tsx 2026-05-07 15:11:41 +00:00
57cd74714f Switch to version 7: modified src/pages/HomePage.tsx 2026-05-07 15:08:53 +00:00
0a73303e6f Merge version_8_1778166408844 into main
Merge version_8_1778166408844 into main
2026-05-07 15:08:20 +00:00
kudinDmitriyUp
96c6d3547a feat: replace Why Choose Us section with numbered list 2026-05-07 15:07:59 +00:00
cde1406f2f Switch to version 6: modified src/pages/HomePage.tsx 2026-05-07 15:06:21 +00:00
887a2a1ee1 Merge version_7_1778166190952 into main
Merge version_7_1778166190952 into main
2026-05-07 15:04:53 +00:00
kudinDmitriyUp
6ea57ef6f4 feat: replace FeaturesIconCards with FeaturesAlternatingSplit for a less techy feel 2026-05-07 15:04:31 +00:00
2a6aa7ceee Merge version_6_1778166059116 into main
Merge version_6_1778166059116 into main
2026-05-07 15:02:30 +00:00
kudinDmitriyUp
5ce0f916ab feat: Replaced 'Why Choose Us' section with icon-based feature cards 2026-05-07 15:02:08 +00:00
e2c6d770f0 Merge version_5_1778165932959 into main
Merge version_5_1778165932959 into main
2026-05-07 15:00:30 +00:00

View File

@@ -1,7 +1,8 @@
import AboutText from '@/components/sections/about/AboutText';
import ContactCta from '@/components/sections/contact/ContactCta';
import FaqSimple from '@/components/sections/faq/FaqSimple';
import FeaturesComparison from '@/components/sections/features/FeaturesComparison';
import FeaturesIconCards from '@/components/sections/features/FeaturesIconCards';
import { Clock, ShieldCheck, DollarSign } from "lucide-react";
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
import ProductVariantCards from '@/components/sections/product/ProductVariantCards';
@@ -57,23 +58,26 @@ export default function HomePage() {
</div>
<div id="why-us" data-section="why-us">
<FeaturesComparison
<FeaturesIconCards
tag="Why Choose Us"
title="Experience the Difference with Our HVAC Services"
description="We stand out by prioritizing your comfort and budget. Our commitment to quality and transparency makes us the preferred choice for HVAC solutions in LA."
negativeItems={[
"Hidden Fees & Surprises",
"Unreliable & Untrained Technicians",
"Slow Response Times in Emergencies",
"Outdated & Inefficient Equipment",
"Poor Communication & Follow-Up",
]}
positiveItems={[
"Transparent & Upfront Pricing",
"Certified & Experienced Professionals",
"24/7 Emergency Service Availability",
"Energy-Efficient & Modern Solutions",
"Clear & Timely Communication",
features={[
{
icon: Clock,
title: "24/7 Emergency Service",
description: "Reliable support when you need it most. Our team is available around the clock for urgent repairs.",
},
{
icon: ShieldCheck,
title: "Certified Technicians",
description: "Our experts are fully certified and continuously trained to handle all HVAC systems with precision.",
},
{
icon: DollarSign,
title: "Transparent Pricing",
description: "No hidden fees, just honest and upfront pricing. We provide clear quotes before any work begins.",
},
]}
/>
</div>