Compare commits
6 Commits
version_4_
...
version_7_
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6ea57ef6f4 | ||
| 2a6aa7ceee | |||
|
|
5ce0f916ab | ||
| e2c6d770f0 | |||
|
|
4fae7e7d26 | ||
| ebdbfe95c9 |
@@ -80,11 +80,16 @@ const HeroBillboard = ({
|
|||||||
|
|
||||||
<ScrollReveal variant="fade-blur" delay={0.2} className="relative w-full p-3 xl:p-4 2xl:p-5 card rounded overflow-hidden">
|
<ScrollReveal variant="fade-blur" delay={0.2} className="relative w-full p-3 xl:p-4 2xl:p-5 card rounded overflow-hidden">
|
||||||
<ImageOrVideo imageSrc={imageSrc} videoSrc={videoSrc} className="aspect-4/5 md:aspect-video" />
|
<ImageOrVideo imageSrc={imageSrc} videoSrc={videoSrc} className="aspect-4/5 md:aspect-video" />
|
||||||
<div className="absolute inset-0 grid grid-cols-1 md:grid-cols-3 gap-4 p-4 md:p-6">
|
<div className="absolute inset-0 flex justify-center items-center">
|
||||||
{usps.map((usp, index) => (
|
{usps.map((usp, index) => (
|
||||||
<div
|
<div
|
||||||
key={index}
|
key={index}
|
||||||
className="bg-white/10 backdrop-blur-lg rounded-lg p-4 flex flex-col items-center justify-center text-center text-white border border-white/20"
|
className={`absolute bg-white/10 backdrop-blur-lg rounded-lg p-4 flex flex-col items-center justify-center text-center text-white border border-white/20
|
||||||
|
${index === 0 ? 'bottom-4 left-4' : ''}
|
||||||
|
${index === 1 ? 'top-4' : ''}
|
||||||
|
${index === 2 ? 'bottom-4 right-4' : ''}
|
||||||
|
`}
|
||||||
|
style={{ width: '200px', height: '150px' }}
|
||||||
>
|
>
|
||||||
<usp.icon className="w-8 h-8 mb-2" />
|
<usp.icon className="w-8 h-8 mb-2" />
|
||||||
<h3 className="font-semibold text-lg">{usp.title}</h3>
|
<h3 className="font-semibold text-lg">{usp.title}</h3>
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
import AboutText from '@/components/sections/about/AboutText';
|
import AboutText from '@/components/sections/about/AboutText';
|
||||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||||
import FaqSimple from '@/components/sections/faq/FaqSimple';
|
import FaqSimple from '@/components/sections/faq/FaqSimple';
|
||||||
import FeaturesComparison from '@/components/sections/features/FeaturesComparison';
|
import FeaturesAlternatingSplit from '@/components/sections/features/FeaturesAlternatingSplit';
|
||||||
|
|
||||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||||
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
|
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
|
||||||
import ProductVariantCards from '@/components/sections/product/ProductVariantCards';
|
import ProductVariantCards from '@/components/sections/product/ProductVariantCards';
|
||||||
@@ -57,23 +58,26 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="why-us" data-section="why-us">
|
<div id="why-us" data-section="why-us">
|
||||||
<FeaturesComparison
|
<FeaturesAlternatingSplit
|
||||||
tag="Why Choose Us"
|
tag="Why Choose Us"
|
||||||
title="Experience the Difference with Our HVAC Services"
|
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."
|
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={[
|
features={[
|
||||||
"Hidden Fees & Surprises",
|
{
|
||||||
"Unreliable & Untrained Technicians",
|
title: "24/7 Emergency Service",
|
||||||
"Slow Response Times in Emergencies",
|
description: "Reliable support when you need it most. Our team is available around the clock for urgent repairs.",
|
||||||
"Outdated & Inefficient Equipment",
|
imageSrc: "http://img.b2bpic.net/free-photo/worried-woman-calling-mechanic-car-service-sitting-front-broken-car-with-open-hood-holding-phone-her-hand_482257-31932.jpg",
|
||||||
"Poor Communication & Follow-Up",
|
},
|
||||||
]}
|
{
|
||||||
positiveItems={[
|
title: "Certified Technicians",
|
||||||
"Transparent & Upfront Pricing",
|
description: "Our experts are fully certified and continuously trained to handle all HVAC systems with precision.",
|
||||||
"Certified & Experienced Professionals",
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-repairman-doing-air-conditioner-service_1303-26529.jpg",
|
||||||
"24/7 Emergency Service Availability",
|
},
|
||||||
"Energy-Efficient & Modern Solutions",
|
{
|
||||||
"Clear & Timely Communication",
|
title: "Transparent Pricing",
|
||||||
|
description: "No hidden fees, just honest and upfront pricing. We provide clear quotes before any work begins.",
|
||||||
|
imageSrc: "http://img.b2bpic.net/free-photo/person-writing-their-notebook_23-2148469902.jpg",
|
||||||
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user