diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 45d8cdf..5a1d70c 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -6,7 +6,7 @@ import FooterCard from '@/components/sections/footer/FooterCard';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TeamCardOne from '@/components/sections/team/TeamCardOne';
-import { Facebook, Instagram } from "lucide-react";
+import { Facebook, Instagram, X } from "lucide-react";
export default function LandingPage() {
return (
@@ -27,33 +27,21 @@ export default function LandingPage() {
@@ -65,21 +53,13 @@ export default function LandingPage() {
description="Cal Air was founded with a simple mission: to provide Las Vegas homeowners with honest, high-quality HVAC services they can rely on. As a local business, we understand the unique climate challenges of the desert and are dedicated to ensuring your comfort year-round."
metrics={[
{
- value: "10+",
- title: "Years Experience",
- },
+ value: "10+", title: "Years Experience"},
{
- value: "Local",
- title: "Las Vegas Owned",
- },
+ value: "Local", title: "Las Vegas Owned"},
{
- value: "100%",
- title: "Satisfaction",
- },
+ value: "100%", title: "Satisfaction"},
{
- value: "24/7",
- title: "Support",
- },
+ value: "24/7", title: "Support"},
]}
imageSrc="http://img.b2bpic.net/free-photo/aerial-shot-beautiful-buildings-mallorca-balearic-islands-spain_181624-19817.jpg"
imageAlt="Las Vegas skyline at sunset"
@@ -96,40 +76,15 @@ export default function LandingPage() {
useInvertedBackground={false}
members={[
{
- id: "1",
- name: "David Chen",
- role: "Lead HVAC Technician",
- imageSrc: "http://img.b2bpic.net/free-photo/male-bus-driver-posing-portrait_23-2151582422.jpg",
- imageAlt: "David Chen, Lead HVAC Technician",
- },
+ id: "1", name: "David Chen", role: "Lead HVAC Technician", imageSrc: "http://img.b2bpic.net/free-photo/male-bus-driver-posing-portrait_23-2151582422.jpg", imageAlt: "David Chen, Lead HVAC Technician"},
{
- id: "2",
- name: "Maria Rodriguez",
- role: "Client Service Manager",
- imageSrc: "http://img.b2bpic.net/free-photo/handsome-businessman-suit-headphones-with-microphone-holding-clipboard-looking-it-with-serious-face-sitting-table-offise-white-background_141793-53887.jpg",
- imageAlt: "Maria Rodriguez, Client Service Manager",
- },
+ id: "2", name: "Maria Rodriguez", role: "Client Service Manager", imageSrc: "http://img.b2bpic.net/free-photo/handsome-businessman-suit-headphones-with-microphone-holding-clipboard-looking-it-with-serious-face-sitting-table-offise-white-background_141793-53887.jpg", imageAlt: "Maria Rodriguez, Client Service Manager"},
{
- id: "3",
- name: "Ethan Vance",
- role: "Installation Specialist",
- imageSrc: "http://img.b2bpic.net/free-photo/man-pointing_1149-608.jpg",
- imageAlt: "Ethan Vance, Installation Specialist",
- },
+ id: "3", name: "Ethan Vance", role: "Installation Specialist", imageSrc: "http://img.b2bpic.net/free-photo/man-pointing_1149-608.jpg", imageAlt: "Ethan Vance, Installation Specialist"},
{
- id: "4",
- name: "Chloe Lee",
- role: "Maintenance Coordinator",
- imageSrc: "http://img.b2bpic.net/free-photo/happy-mechanic-making-phone-call-while-working-auto-repair-shop_637285-11583.jpg",
- imageAlt: "Chloe Lee, Maintenance Coordinator",
- },
+ id: "4", name: "Chloe Lee", role: "Maintenance Coordinator", imageSrc: "http://img.b2bpic.net/free-photo/happy-mechanic-making-phone-call-while-working-auto-repair-shop_637285-11583.jpg", imageAlt: "Chloe Lee, Maintenance Coordinator"},
{
- id: "5",
- name: "Robert Miller",
- role: "Founder & CEO",
- imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-practicing-tai-chi_23-2149960184.jpg",
- imageAlt: "Robert Miller, Founder & CEO",
- },
+ id: "5", name: "Robert Miller", role: "Founder & CEO", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-practicing-tai-chi_23-2149960184.jpg", imageAlt: "Robert Miller, Founder & CEO"},
]}
title="Meet Our Expert Team"
description="Our certified technicians and friendly staff are committed to providing you with the best HVAC experience in Las Vegas."
@@ -145,19 +100,13 @@ export default function LandingPage() {
socialLinks={[
{
icon: Facebook,
- href: "https://facebook.com/calairhvac",
- ariaLabel: "Facebook",
- },
+ href: "https://facebook.com/calairhvac", ariaLabel: "Facebook"},
{
icon: Instagram,
- href: "https://instagram.com/calairhvac",
- ariaLabel: "Instagram",
- },
+ href: "https://instagram.com/calairhvac", ariaLabel: "Instagram"},
{
- icon: "X",
- href: "https://twitter.com/calairhvac",
- ariaLabel: "Twitter",
- },
+ icon: X,
+ href: "https://twitter.com/calairhvac", ariaLabel: "Twitter"},
]}
/>
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index 4cd126b..2809a59 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -6,7 +6,7 @@ import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqBase from '@/components/sections/faq/FaqBase';
import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
-import { Facebook, Instagram } from "lucide-react";
+import { Facebook, Instagram, X } from "lucide-react";
export default function LandingPage() {
return (
@@ -27,33 +27,21 @@ export default function LandingPage() {
@@ -62,8 +50,7 @@ export default function LandingPage() {
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 3485800..b68e1e9 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -9,7 +9,7 @@ import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestim
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
-import { Facebook, Instagram, Star } from "lucide-react";
+import { Facebook, Instagram, Star, X } from "lucide-react";
export default function LandingPage() {
return (
@@ -30,33 +30,21 @@ export default function LandingPage() {
@@ -67,80 +55,41 @@ export default function LandingPage() {
description="Experience reliable, fast, and comfort-driven heating and air conditioning services for your home."
testimonials={[
{
- name: "Sarah J.",
- handle: "@s_johnson_lv",
- testimonial: "Cal Air saved us during a Vegas summer! Fast, professional, and our AC runs perfectly now. Highly recommend!",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/happy-female-office-workers-thumbing-up-smiling-two-cheerful-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-success-cooperation-concept_74855-7378.jpg",
- imageAlt: "Sarah J.",
- },
+ name: "Sarah J.", handle: "@s_johnson_lv", testimonial: "Cal Air saved us during a Vegas summer! Fast, professional, and our AC runs perfectly now. Highly recommend!", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/happy-female-office-workers-thumbing-up-smiling-two-cheerful-professional-businesswomen-standing-together-posing-meeting-room-teamwork-business-success-cooperation-concept_74855-7378.jpg", imageAlt: "Sarah J."},
{
- name: "Mark D.",
- handle: "@markd_hvacfan",
- testimonial: "Finally found an HVAC company I can trust. Cal Air is top-notch, from communication to quality of work.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/excited-smiling-blond-girl-happily-keeping-thumbs-up-near-with-copy-space-text-promotional-content-isolated-yellow-background-like-expression_574295-2945.jpg",
- imageAlt: "Mark D.",
- },
+ name: "Mark D.", handle: "@markd_hvacfan", testimonial: "Finally found an HVAC company I can trust. Cal Air is top-notch, from communication to quality of work.", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/excited-smiling-blond-girl-happily-keeping-thumbs-up-near-with-copy-space-text-promotional-content-isolated-yellow-background-like-expression_574295-2945.jpg", imageAlt: "Mark D."},
{
- name: "Lisa R.",
- handle: "@lisa_reviews",
- testimonial: "Professional, courteous, and transparent pricing. Cal Air is our go-to for all heating and cooling needs.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-taking-break-with-smartphone_23-2150522190.jpg",
- imageAlt: "Lisa R.",
- },
+ name: "Lisa R.", handle: "@lisa_reviews", testimonial: "Professional, courteous, and transparent pricing. Cal Air is our go-to for all heating and cooling needs.", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-taking-break-with-smartphone_23-2150522190.jpg", imageAlt: "Lisa R."},
{
- name: "David C.",
- handle: "@vegashomeowner",
- testimonial: "Prompt service and fixed our furnace on the first visit. Couldn't ask for better service. Thank you, Cal Air!",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/refined-girl-drinking-coffee-with-husband-relaxed-couple-chilling-kitchen-morning_197531-12204.jpg",
- imageAlt: "David C.",
- },
+ name: "David C.", handle: "@vegashomeowner", testimonial: "Prompt service and fixed our furnace on the first visit. Couldn't ask for better service. Thank you, Cal Air!", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/refined-girl-drinking-coffee-with-husband-relaxed-couple-chilling-kitchen-morning_197531-12204.jpg", imageAlt: "David C."},
{
- name: "Olivia P.",
- handle: "@olivia_comfort",
- testimonial: "Exceptional service from start to finish. Our new AC installation was seamless and the team was incredibly tidy.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-doing-thumbs-up_23-2148628939.jpg",
- imageAlt: "Olivia P.",
- },
+ name: "Olivia P.", handle: "@olivia_comfort", testimonial: "Exceptional service from start to finish. Our new AC installation was seamless and the team was incredibly tidy.", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-doing-thumbs-up_23-2148628939.jpg", imageAlt: "Olivia P."},
]}
testimonialRotationInterval={7000}
tag="4.9★ from 433+ Happy Customers"
tagIcon={Star}
buttons={[
{
- text: "Call Now",
- href: "tel:+17025501435",
- },
+ text: "Call Now", href: "tel:+17025501435"},
{
- text: "Get a Free Quote",
- href: "/contact",
- },
+ text: "Get a Free Quote", href: "/contact"},
]}
avatars={[
{
- src: "http://img.b2bpic.net/free-photo/female-customer-support-phone-operator-workplace_1398-8.jpg",
- alt: "John Doe",
- },
+ src: "http://img.b2bpic.net/free-photo/female-customer-support-phone-operator-workplace_1398-8.jpg", alt: "John Doe"},
{
- src: "http://img.b2bpic.net/free-photo/businesswoman-glasses-portrait_1262-1461.jpg",
- alt: "Jane Smith",
- },
+ src: "http://img.b2bpic.net/free-photo/businesswoman-glasses-portrait_1262-1461.jpg", alt: "Jane Smith"},
{
- src: "http://img.b2bpic.net/free-photo/young-engineer-man-wearing-construction-vest-looking-confused-with-expression-as-asking-question-isolated-green-background_141793-20170.jpg",
- alt: "Robert Brown",
- },
+ src: "http://img.b2bpic.net/free-photo/young-engineer-man-wearing-construction-vest-looking-confused-with-expression-as-asking-question-isolated-green-background_141793-20170.jpg", alt: "Robert Brown"},
{
- src: "http://img.b2bpic.net/free-photo/architect-with-safety-helmet-posing_23-2148242939.jpg",
- alt: "Emily White",
- },
+ src: "http://img.b2bpic.net/free-photo/architect-with-safety-helmet-posing_23-2148242939.jpg", alt: "Emily White"},
{
- src: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-11786.jpg",
- alt: "Sarah K.",
- },
+ src: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-11786.jpg", alt: "Sarah K."},
]}
avatarText="Trusted by over 400+ Las Vegas residents"
imageSrc="http://img.b2bpic.net/free-photo/white-metallic-building-pipes_250224-254.jpg"
@@ -157,37 +106,13 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
- id: "ac-repair",
- title: "AC Repair",
- description: "Rapid diagnostics and efficient repairs to restore your cooling fast. Available for same-day service.",
- tag: "Cooling",
- imageSrc: "http://img.b2bpic.net/free-photo/close-up-frustrated-male-electrician-standing-near-electric-board_23-2148087630.jpg",
- imageAlt: "HVAC technician repairing an AC unit",
- },
+ id: "ac-repair", title: "AC Repair", description: "Rapid diagnostics and efficient repairs to restore your cooling fast. Available for same-day service.", tag: "Cooling", imageSrc: "http://img.b2bpic.net/free-photo/close-up-frustrated-male-electrician-standing-near-electric-board_23-2148087630.jpg", imageAlt: "HVAC technician repairing an AC unit"},
{
- id: "ac-installation",
- title: "AC Installation",
- description: "Expert installation of new, energy-efficient AC systems for lasting comfort and savings.",
- tag: "Upgrade",
- imageSrc: "http://img.b2bpic.net/free-photo/team-working-with-manifold-gauges_482257-91083.jpg",
- imageAlt: "Installation of a new AC unit",
- },
+ id: "ac-installation", title: "AC Installation", description: "Expert installation of new, energy-efficient AC systems for lasting comfort and savings.", tag: "Upgrade", imageSrc: "http://img.b2bpic.net/free-photo/team-working-with-manifold-gauges_482257-91083.jpg", imageAlt: "Installation of a new AC unit"},
{
- id: "hvac-maintenance",
- title: "HVAC Maintenance",
- description: "Preventative tune-ups to ensure optimal performance, efficiency, and longevity of your system.",
- tag: "Protect",
- imageSrc: "http://img.b2bpic.net/free-photo/sportsman-training-climbing-wall_23-2147795621.jpg",
- imageAlt: "Technician performing HVAC maintenance",
- },
+ id: "hvac-maintenance", title: "HVAC Maintenance", description: "Preventative tune-ups to ensure optimal performance, efficiency, and longevity of your system.", tag: "Protect", imageSrc: "http://img.b2bpic.net/free-photo/sportsman-training-climbing-wall_23-2147795621.jpg", imageAlt: "Technician performing HVAC maintenance"},
{
- id: "heating-services",
- title: "Heating Services",
- description: "Reliable repair, installation, and maintenance for all types of heating systems, keeping you warm.",
- tag: "Warmth",
- imageSrc: "http://img.b2bpic.net/free-photo/man-looks-faucet-pipes-valve-pressure-meter_169016-14812.jpg",
- imageAlt: "Technician working on a heating system",
- },
+ id: "heating-services", title: "Heating Services", description: "Reliable repair, installation, and maintenance for all types of heating systems, keeping you warm.", tag: "Warmth", imageSrc: "http://img.b2bpic.net/free-photo/man-looks-faucet-pipes-valve-pressure-meter_169016-14812.jpg", imageAlt: "Technician working on a heating system"},
]}
title="Our Core Services"
description="Keeping your Las Vegas home comfortable year-round with expert heating and cooling solutions."
@@ -201,21 +126,13 @@ export default function LandingPage() {
description="At Cal Air, we’re more than just HVAC contractors; we’re your trusted partners in home comfort. With a commitment to excellence and unparalleled local expertise, we deliver peace of mind with every service."
metrics={[
{
- value: "Fast",
- title: "Response Times",
- },
+ value: "Fast", title: "Response Times"},
{
- value: "Licensed",
- title: "& Insured",
- },
+ value: "Licensed", title: "& Insured"},
{
- value: "5-Star",
- title: "Customer Service",
- },
+ value: "5-Star", title: "Customer Service"},
{
- value: "Local",
- title: "Las Vegas Experts",
- },
+ value: "Local", title: "Las Vegas Experts"},
]}
imageSrc="http://img.b2bpic.net/free-photo/corporate-brainstorm-work-huge-project-design-bureau-four-colleagues-office-clothes-standing-attentively-watching-schemes-drawings-lay-table-near-their-main-leader_273609-5759.jpg"
imageAlt="HVAC team discussing plans on tablet"
@@ -233,59 +150,23 @@ export default function LandingPage() {
carouselMode="auto"
testimonials={[
{
- id: "1",
- name: "Jessica L.",
- role: "Homeowner",
- company: "Summerlin",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/thinking-woman-holding-blank-card_23-2148363633.jpg",
- imageAlt: "Jessica L.",
- },
+ id: "1", name: "Jessica L.", role: "Homeowner", company: "Summerlin", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/thinking-woman-holding-blank-card_23-2148363633.jpg", imageAlt: "Jessica L."},
{
- id: "2",
- name: "Michael S.",
- role: "Property Manager",
- company: "Henderson",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-new-home-man-decorating-living-room_329181-270.jpg",
- imageAlt: "Michael S.",
- },
+ id: "2", name: "Michael S.", role: "Property Manager", company: "Henderson", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-new-home-man-decorating-living-room_329181-270.jpg", imageAlt: "Michael S."},
{
- id: "3",
- name: "Olivia M.",
- role: "Residential Client",
- company: "Spring Valley",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-playing-bingo_23-2149193887.jpg",
- imageAlt: "Olivia M.",
- },
+ id: "3", name: "Olivia M.", role: "Residential Client", company: "Spring Valley", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-playing-bingo_23-2149193887.jpg", imageAlt: "Olivia M."},
{
- id: "4",
- name: "Daniel P.",
- role: "Local Business Owner",
- company: "North Las Vegas",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/mother-with-two-childrens_1157-18773.jpg",
- imageAlt: "Daniel P.",
- },
+ id: "4", name: "Daniel P.", role: "Local Business Owner", company: "North Las Vegas", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/mother-with-two-childrens_1157-18773.jpg", imageAlt: "Daniel P."},
{
- id: "5",
- name: "Sophia G.",
- role: "First-time Buyer",
- company: "Centennial Hills",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/happy-expression_1194-1762.jpg",
- imageAlt: "Sophia G.",
- },
+ id: "5", name: "Sophia G.", role: "First-time Buyer", company: "Centennial Hills", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/happy-expression_1194-1762.jpg", imageAlt: "Sophia G."},
{
- id: "6",
- name: "Ethan K.",
- role: "Veteran Homeowner",
- company: "Green Valley",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/young-worker-holding-hand-chest-uniform-looking-grateful_176474-35950.jpg",
- imageAlt: "Ethan K.",
- },
+ id: "6", name: "Ethan K.", role: "Veteran Homeowner", company: "Green Valley", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/young-worker-holding-hand-chest-uniform-looking-grateful_176474-35950.jpg", imageAlt: "Ethan K."},
]}
title="What Our Valued Customers Say"
description="Don't just take our word for it – hear directly from homeowners across Las Vegas who trust Cal Air."
@@ -296,8 +177,7 @@ export default function LandingPage() {
diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx
index 70e013d..936d7ca 100644
--- a/src/app/reviews/page.tsx
+++ b/src/app/reviews/page.tsx
@@ -6,7 +6,7 @@ import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
-import { Facebook, Instagram } from "lucide-react";
+import { Facebook, Instagram, X } from "lucide-react";
export default function LandingPage() {
return (
@@ -27,33 +27,21 @@ export default function LandingPage() {
@@ -67,59 +55,23 @@ export default function LandingPage() {
carouselMode="buttons"
testimonials={[
{
- id: "1",
- name: "Sarah J.",
- role: "Homeowner",
- company: "Summerlin",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/pensive-woman-resting-with-laptop-sofa_23-2147670440.jpg",
- imageAlt: "Sarah J.",
- },
+ id: "1", name: "Sarah J.", role: "Homeowner", company: "Summerlin", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/pensive-woman-resting-with-laptop-sofa_23-2147670440.jpg", imageAlt: "Sarah J."},
{
- id: "2",
- name: "Mark D.",
- role: "Property Manager",
- company: "Henderson",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/bearded-man-navy-t-shirt-smiling-showing-thumbs-up-standing-orange-wall_141793-82177.jpg",
- imageAlt: "Mark D.",
- },
+ id: "2", name: "Mark D.", role: "Property Manager", company: "Henderson", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/bearded-man-navy-t-shirt-smiling-showing-thumbs-up-standing-orange-wall_141793-82177.jpg", imageAlt: "Mark D."},
{
- id: "3",
- name: "Lisa R.",
- role: "Residential Client",
- company: "Spring Valley",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/elegant-old-man-standing-home-with-his-granddaughter_1157-29905.jpg",
- imageAlt: "Lisa R.",
- },
+ id: "3", name: "Lisa R.", role: "Residential Client", company: "Spring Valley", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/elegant-old-man-standing-home-with-his-granddaughter_1157-29905.jpg", imageAlt: "Lisa R."},
{
- id: "4",
- name: "David C.",
- role: "Local Business Owner",
- company: "North Las Vegas",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/cute-couple-having-breakfast-kitchen_23-2147894760.jpg",
- imageAlt: "David C.",
- },
+ id: "4", name: "David C.", role: "Local Business Owner", company: "North Las Vegas", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/cute-couple-having-breakfast-kitchen_23-2147894760.jpg", imageAlt: "David C."},
{
- id: "5",
- name: "Sophia G.",
- role: "First-time Buyer",
- company: "Centennial Hills",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/portrait-fashionable-well-dressed-man-with-beard-posing-outdoors_1328-3268.jpg",
- imageAlt: "Sophia G.",
- },
+ id: "5", name: "Sophia G.", role: "First-time Buyer", company: "Centennial Hills", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/portrait-fashionable-well-dressed-man-with-beard-posing-outdoors_1328-3268.jpg", imageAlt: "Sophia G."},
{
- id: "6",
- name: "Ethan K.",
- role: "Veteran Homeowner",
- company: "Green Valley",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/young-gardener-woman-with-short-hair-apron-hat-holding-mini-rake-looking-up-with-skeptic-smile-face-standing-light-background_141793-45677.jpg",
- imageAlt: "Ethan K.",
- },
+ id: "6", name: "Ethan K.", role: "Veteran Homeowner", company: "Green Valley", rating: 5,
+ imageSrc: "http://img.b2bpic.net/free-photo/young-gardener-woman-with-short-hair-apron-hat-holding-mini-rake-looking-up-with-skeptic-smile-face-standing-light-background_141793-45677.jpg", imageAlt: "Ethan K."},
]}
title="Hear From Our Happy Customers"
description="Our 4.9-star rating speaks for itself. Read what homeowners across Las Vegas have to say about Cal Air's exceptional service."
@@ -131,14 +83,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
names={[
- "Las Vegas Homes Inc.",
- "Desert Oasis Realty",
- "Nevada Energy Savers",
- "Green Valley Development",
- "Local Comfort Alliance",
- "Property Management LV",
- "Home Builder's Network",
- ]}
+ "Las Vegas Homes Inc.", "Desert Oasis Realty", "Nevada Energy Savers", "Green Valley Development", "Local Comfort Alliance", "Property Management LV", "Home Builder's Network"]}
title="Trusted by Las Vegas Homeowners & Partners"
description="Our commitment to quality service has earned us the trust of countless residents and leading organizations in the community."
tag="Partners"
@@ -154,19 +99,13 @@ export default function LandingPage() {
socialLinks={[
{
icon: Facebook,
- href: "https://facebook.com/calairhvac",
- ariaLabel: "Facebook",
- },
+ href: "https://facebook.com/calairhvac", ariaLabel: "Facebook"},
{
icon: Instagram,
- href: "https://instagram.com/calairhvac",
- ariaLabel: "Instagram",
- },
+ href: "https://instagram.com/calairhvac", ariaLabel: "Instagram"},
{
- icon: "X",
- href: "https://twitter.com/calairhvac",
- ariaLabel: "Twitter",
- },
+ icon: X,
+ href: "https://twitter.com/calairhvac", ariaLabel: "Twitter"},
]}
/>
diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx
index dd86b81..cc7cf6a 100644
--- a/src/app/services/page.tsx
+++ b/src/app/services/page.tsx
@@ -6,7 +6,7 @@ import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
-import { Facebook, Instagram } from "lucide-react";
+import { Facebook, Instagram, X } from "lucide-react";
export default function LandingPage() {
return (
@@ -27,33 +27,21 @@ export default function LandingPage() {
@@ -65,37 +53,13 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
- id: "ac-repair-full",
- title: "AC Repair & Diagnostics",
- description: "Rapid troubleshooting and efficient repair for all major AC brands. We diagnose issues quickly and provide lasting solutions.",
- tag: "Emergency",
- imageSrc: "http://img.b2bpic.net/free-photo/tilt-up-shot-out-service-condenser-unit-with-protection-cover-removed-need-fixing-with-damaged-electric-internal-parts-outside-hvac-system-working-anymore-ready-be-fixed_482257-64976.jpg",
- imageAlt: "Technician diagnosing an AC unit",
- },
+ id: "ac-repair-full", title: "AC Repair & Diagnostics", description: "Rapid troubleshooting and efficient repair for all major AC brands. We diagnose issues quickly and provide lasting solutions.", tag: "Emergency", imageSrc: "http://img.b2bpic.net/free-photo/tilt-up-shot-out-service-condenser-unit-with-protection-cover-removed-need-fixing-with-damaged-electric-internal-parts-outside-hvac-system-working-anymore-ready-be-fixed_482257-64976.jpg", imageAlt: "Technician diagnosing an AC unit"},
{
- id: "ac-installation-full",
- title: "New AC System Installation",
- description: "Upgrade to a new, high-efficiency AC system tailored to your home's needs. Enjoy superior cooling and energy savings.",
- tag: "Efficiency",
- imageSrc: "http://img.b2bpic.net/free-photo/professional-repairmen-enlisted-air-conditioner-check-refilling-freon-expert-african-american-mechanic-colleague-using-manometers-precisely-measure-pressure-condenser_482257-65757.jpg",
- imageAlt: "Installing a new air conditioning unit",
- },
+ id: "ac-installation-full", title: "New AC System Installation", description: "Upgrade to a new, high-efficiency AC system tailored to your home's needs. Enjoy superior cooling and energy savings.", tag: "Efficiency", imageSrc: "http://img.b2bpic.net/free-photo/professional-repairmen-enlisted-air-conditioner-check-refilling-freon-expert-african-american-mechanic-colleague-using-manometers-precisely-measure-pressure-condenser_482257-65757.jpg", imageAlt: "Installing a new air conditioning unit"},
{
- id: "hvac-maintenance-full",
- title: "Preventative HVAC Maintenance",
- description: "Regular tune-ups to extend system life, prevent breakdowns, and ensure peak performance and air quality.",
- tag: "Longevity",
- imageSrc: "http://img.b2bpic.net/free-photo/seasoned-mechanic-removing-layer-dirt-from-blower-fan-prevent-damaging-ventilation-system-adept-repairman-cleaning-hvac-system-parts-stop-risk-overheating-close-up_482257-67998.jpg",
- imageAlt: "HVAC technician performing maintenance",
- },
+ id: "hvac-maintenance-full", title: "Preventative HVAC Maintenance", description: "Regular tune-ups to extend system life, prevent breakdowns, and ensure peak performance and air quality.", tag: "Longevity", imageSrc: "http://img.b2bpic.net/free-photo/seasoned-mechanic-removing-layer-dirt-from-blower-fan-prevent-damaging-ventilation-system-adept-repairman-cleaning-hvac-system-parts-stop-risk-overheating-close-up_482257-67998.jpg", imageAlt: "HVAC technician performing maintenance"},
{
- id: "heating-services-full",
- title: "Complete Heating Solutions",
- description: "From furnace repairs to heat pump installations, we ensure your home stays warm and comfortable during cooler months.",
- tag: "Warmth",
- imageSrc: "http://img.b2bpic.net/free-photo/man-works-environment-project_23-2148894020.jpg",
- imageAlt: "Technician working on a heating system",
- },
+ id: "heating-services-full", title: "Complete Heating Solutions", description: "From furnace repairs to heat pump installations, we ensure your home stays warm and comfortable during cooler months.", tag: "Warmth", imageSrc: "http://img.b2bpic.net/free-photo/man-works-environment-project_23-2148894020.jpg", imageAlt: "Technician working on a heating system"},
]}
title="Comprehensive HVAC Services"
description="From emergency repairs to new system installations, Cal Air provides full-spectrum heating and air conditioning solutions designed for your comfort."
@@ -108,20 +72,11 @@ export default function LandingPage() {
useInvertedBackground={false}
faqs={[
{
- id: "1",
- title: "How often should I have my HVAC system serviced?",
- content: "We recommend professional HVAC maintenance at least once a year, ideally twice (spring for AC, fall for heating) to ensure optimal performance and efficiency.",
- },
+ id: "1", title: "How often should I have my HVAC system serviced?", content: "We recommend professional HVAC maintenance at least once a year, ideally twice (spring for AC, fall for heating) to ensure optimal performance and efficiency."},
{
- id: "2",
- title: "What are the signs I need AC repair?",
- content: "Common signs include unusual noises, strange odors, weak airflow, warm air blowing, higher energy bills, or a system that cycles on and off frequently.",
- },
+ id: "2", title: "What are the signs I need AC repair?", content: "Common signs include unusual noises, strange odors, weak airflow, warm air blowing, higher energy bills, or a system that cycles on and off frequently."},
{
- id: "3",
- title: "Do you offer emergency HVAC services?",
- content: "Yes, we understand that HVAC emergencies can happen anytime. Contact us for urgent repair needs in Las Vegas and surrounding areas.",
- },
+ id: "3", title: "Do you offer emergency HVAC services?", content: "Yes, we understand that HVAC emergencies can happen anytime. Contact us for urgent repair needs in Las Vegas and surrounding areas."},
]}
title="Frequently Asked Questions About Our Services"
description="Find answers to common questions regarding our HVAC repair, installation, and maintenance offerings."
@@ -138,19 +93,13 @@ export default function LandingPage() {
socialLinks={[
{
icon: Facebook,
- href: "https://facebook.com/calairhvac",
- ariaLabel: "Facebook",
- },
+ href: "https://facebook.com/calairhvac", ariaLabel: "Facebook"},
{
icon: Instagram,
- href: "https://instagram.com/calairhvac",
- ariaLabel: "Instagram",
- },
+ href: "https://instagram.com/calairhvac", ariaLabel: "Instagram"},
{
- icon: "X",
- href: "https://twitter.com/calairhvac",
- ariaLabel: "Twitter",
- },
+ icon: X,
+ href: "https://twitter.com/calairhvac", ariaLabel: "Twitter"},
]}
/>