diff --git a/src/app/page.tsx b/src/app/page.tsx index 67da1ef..8708a0d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import FeatureCardEight from "@/components/sections/feature/FeatureCardEight"; import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import ContactCTA from "@/components/sections/contact/ContactCTA"; -import FooterMedia from "@/components/sections/footer/FooterMedia"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; import { ShieldCheck, Wrench, DollarSign, Phone } from "lucide-react"; export default function HvacPage() { @@ -70,22 +70,12 @@ export default function HvacPage() { title="Reliable Climate Solutions Since 2005" description="AirPro HVAC has been keeping homes and businesses comfortable for nearly two decades. Our certified technicians deliver expert installations, maintenance, and repairs — backed by transparent pricing and a commitment to getting the job done right the first time." metrics={[ - { - value: "2,500+", - title: "Systems installed and serviced", - }, - { - value: "98%", - title: "Customer satisfaction rate", - }, + { value: "2,500+", title: "Systems installed and serviced" }, + { value: "98%", title: "Customer satisfaction rate" }, ]} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-2.jpg" imageAlt="Commercial HVAC units on rooftop" - mediaBadge={{ - text: "Active Now", - avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-3.jpg", - avatarAlt: "Technician" - }} + mediaBadge={{ text: "Active Now", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-3.jpg", avatarAlt: "Technician" }} mediaAnimation="slide-up" metricsAnimation="slide-up" useInvertedBackground={false} @@ -98,47 +88,14 @@ export default function HvacPage() { buttons={[{ text: "Get a Quote", href: "#contact" }]} buttonAnimation="slide-up" features={[ - { - title: "AC Installation", - description: "Expert installation of high-efficiency air conditioning systems for homes and commercial spaces.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-4.jpg", - imageAlt: "AC installation service", - }, - { - title: "Heating Systems", - description: "Complete furnace and heat pump installations to keep you warm through every winter.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-5.jpg", - imageAlt: "Heating system service", - }, - { - title: "Maintenance Plans", - description: "Preventative maintenance programs that extend the life of your system and reduce energy costs.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-6.jpg", - imageAlt: "HVAC maintenance", - }, - { - title: "Emergency Repairs", - description: "24/7 emergency repair service — we respond fast when your system breaks down unexpectedly.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-7.jpg", - imageAlt: "Emergency HVAC repair", - }, - { - title: "Duct Cleaning", - description: "Professional duct cleaning to improve air quality and system efficiency throughout your property.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-8.jpg", - imageAlt: "Duct cleaning service", - }, - { - title: "System Inspections", - description: "Thorough inspections with detailed reports and transparent recommendations — no hidden fees.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-9.jpg", - imageAlt: "HVAC system inspection", - }, + { title: "AC Installation", description: "Expert installation of high-efficiency air conditioning systems for homes and commercial spaces.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-4.jpg", imageAlt: "AC installation service" }, + { title: "Heating Systems", description: "Complete furnace and heat pump installations to keep you warm through every winter.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-5.jpg", imageAlt: "Heating system service" }, + { title: "Maintenance Plans", description: "Preventative maintenance programs that extend the life of your system and reduce energy costs.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-6.jpg", imageAlt: "HVAC maintenance" }, + { title: "Emergency Repairs", description: "24/7 emergency repair service — we respond fast when your system breaks down unexpectedly.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-7.jpg", imageAlt: "Emergency HVAC repair" }, + { title: "Duct Cleaning", description: "Professional duct cleaning to improve air quality and system efficiency throughout your property.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-8.jpg", imageAlt: "Duct cleaning service" }, + { title: "System Inspections", description: "Thorough inspections with detailed reports and transparent recommendations — no hidden fees.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-9.jpg", imageAlt: "HVAC system inspection" }, ]} gridVariant="uniform-all-items-equal" - uniformGridCustomHeightClasses="aspect-square" - gridClassName="md:!grid-cols-3" - carouselThreshold={7} animationType="slide-up" textboxLayout="default" useInvertedBackground={false} @@ -148,55 +105,22 @@ export default function HvacPage() { title="Why Choose AirPro" description="What sets us apart from the rest" features={[ - { - icon: ShieldCheck, - title: "Reliability & Trust", - description: "Looking for a dependable HVAC company? We arrive on time and do the job right.", - }, - { - icon: Wrench, - title: "Quality Workmanship", - description: "Our skilled technicians excel in various HVAC repairs, using only top-quality materials.", - }, - { - icon: DollarSign, - title: "Fair & Transparent Pricing", - description: "No surprises here! We offer clear quotes and fair pricing for quality work.", - }, + { icon: ShieldCheck, title: "Reliability & Trust", description: "Looking for a dependable HVAC company? We arrive on time and do the job right." }, + { icon: Wrench, title: "Quality Workmanship", description: "Our skilled technicians excel in various HVAC repairs, using only top-quality materials." }, + { icon: DollarSign, title: "Fair & Transparent Pricing", description: "No surprises here! We offer clear quotes and fair pricing for quality work." }, ]} textboxLayout="default" animationType="slide-up" useInvertedBackground={false} /> - -
-