8 Commits

Author SHA1 Message Date
4932403854 Merge version_4 into main
Merge version_4 into main
2026-04-25 23:24:46 +00:00
16ad0676a6 Update src/app/page.tsx 2026-04-25 23:24:42 +00:00
972ba0d5d2 Merge version_3 into main
Merge version_3 into main
2026-04-25 23:22:26 +00:00
2f3cee7955 Update src/app/page.tsx 2026-04-25 23:22:23 +00:00
a1dadc783e Merge version_2 into main
Merge version_2 into main
2026-04-25 23:19:01 +00:00
8fd4f2b13c Update src/app/page.tsx 2026-04-25 23:18:57 +00:00
531a12c1ac Merge version_1 into main
Merge version_1 into main
2026-04-25 23:16:08 +00:00
f6696c82eb Merge version_1 into main
Merge version_1 into main
2026-04-25 23:15:29 +00:00

View File

@@ -12,7 +12,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import { CheckCircle, Flame, ShieldCheck, Snowflake, Sun, Wrench, Zap } from "lucide-react";
import { CheckCircle, Flame, ShieldCheck, Snowflake, Sun, Wrench, Zap, Thermometer, Wind, Home } from "lucide-react";
export default function LandingPage() {
return (
@@ -47,7 +47,7 @@ export default function LandingPage() {
background={{ variant: "gradient-bars" }}
title="Your Comfort, Our Commitment."
description="Expert HVAC maintenance, repair, and installation services by JC Air Solutions LLC. Serving your home with 4.9-star rated reliability."
buttons={[{ text: "Book Service", href: "#contact" }]}
buttons={[{ text: "Get Your Free HVAC Estimate", onClick: () => document.getElementById('contact')?.scrollIntoView({ behavior: 'smooth' }) }]}
imageSrc="http://img.b2bpic.net/free-photo/repairman-installing-condenser-close-up_482257-78541.jpg"
imageAlt="Professional HVAC technician servicing a residential unit."
mediaAnimation="slide-up"
@@ -76,32 +76,36 @@ export default function LandingPage() {
useInvertedBackground={false}
features={[
{
title: "System Repair", description: "Fast, reliable AC and heating repairs to get your system back online.", media: { imageSrc: "http://img.b2bpic.net/free-photo/close-up-broken-manometers_482257-80114.jpg", imageAlt: "HVAC system component repair" },
title: "A/C & Heating Care", description: "Full suite of maintenance and repair services for year-round climate control.", media: { imageSrc: "http://img.b2bpic.net/free-photo/close-up-broken-manometers_482257-80114.jpg", imageAlt: "HVAC system component repair" },
items: [
{ icon: Wrench, text: "AC Repair" },
{ icon: Flame, text: "Heating Repair" },
{ icon: Snowflake, text: "A/C system maintenance" },
{ icon: Wrench, text: "A/C system repair" },
{ icon: Wind, text: "HVAC duct & vent installation" },
{ icon: Sun, text: "HVAC system maintenance" },
],
reverse: false
},
{
title: "Routine Maintenance", description: "Preventive check-ups to extend equipment life and efficiency.", media: { imageSrc: "http://img.b2bpic.net/free-photo/sanitary-equipment_93675-132396.jpg", imageAlt: "Technician performing AC tune-up" },
title: "Heating Specialists", description: "Keep your home cozy with expert heating system services.", media: { imageSrc: "http://img.b2bpic.net/free-photo/sanitary-equipment_93675-132396.jpg", imageAlt: "Technician performing AC tune-up" },
items: [
{ icon: Sun, text: "AC Tune-ups" },
{ icon: Snowflake, text: "Winter Heating Checks" },
{ icon: Flame, text: "Heating system installation" },
{ icon: Thermometer, text: "Heating system maintenance" },
{ icon: Flame, text: "Heating system repair" },
],
reverse: true
},
{
title: "New Installation", description: "Professional install for modern, energy-efficient HVAC solutions.", media: { imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281318.jpg", imageAlt: "Full system install process" },
title: "Installation & Repairs", description: "Professional upgrades and essential repairs for all home HVAC units.", media: { imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-ventilation-system_23-2149281318.jpg", imageAlt: "Full system install process" },
items: [
{ icon: CheckCircle, text: "Thermostat Setup" },
{ icon: Zap, text: "Full System Setup" },
{ icon: Zap, text: "Install AC" },
{ icon: Thermometer, text: "Install thermostat" },
{ icon: Wrench, text: "Repair HVAC" },
],
reverse: false
},
]}
title="Comprehensive HVAC Services"
description="From emergency repairs to full system installations, we keep your home climate-perfect year-round."
description="From maintenance check-ups to full installations, we keep your home climate-perfect."
/>
</div>
@@ -213,4 +217,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}