3 Commits

Author SHA1 Message Date
kudinDmitriyUp
37c62e21fa Bob AI: Update the business information to include the address '880 E Franklin Rd Ste 31 2026-06-30 22:49:26 +00:00
9e7b29995b Merge version_2_1782859373729 into main
Merge version_2_1782859373729 into main
2026-06-30 22:45:04 +00:00
kudinDmitriyUp
466eae96d0 Bob AI: Updated testimonial quote and swapped hero component 2026-06-30 22:44:21 +00:00
9 changed files with 320 additions and 226 deletions

View File

@@ -1,238 +1,37 @@
import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
import ContactCta from '@/components/sections/contact/ContactCta';
import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion';
import FeaturesComparison from '@/components/sections/features/FeaturesComparison';
import HeroBillboardBrand from '@/components/sections/hero/HeroBillboardBrand';
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
import TeamProfileCards from '@/components/sections/team/TeamProfileCards';
import TestimonialTrustCard from '@/components/sections/testimonial/TestimonialTrustCard';
import { CheckCircle, Clock, ListChecks, Star, Users, Wrench } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
// AUTO-GENERATED shell by per-section-migrate.
// Section bodies live in the sibling sections/ folder (one file per section).
// Edit those section files directly. Non-block content (wrappers,
// non-inlinable sections) is preserved inline; extracted section blocks
// become component refs.
export default function HomePage() {
import React from 'react';
import HeroSection from './HomePage/sections/Hero';
import AboutSection from './HomePage/sections/About';
import ServicesSection from './HomePage/sections/Services';
import MetricsSection from './HomePage/sections/Metrics';
import TeamSection from './HomePage/sections/Team';
import ReviewsSection from './HomePage/sections/Reviews';
import FaqSection from './HomePage/sections/Faq';
import ContactSection from './HomePage/sections/Contact';
export default function HomePage(): React.JSX.Element {
return (
<>
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroBillboardBrand
brand="Air Conditioning & Heating Service of Meridian"
description="Providing expert HVAC repair, furnace diagnostics, and duct replacement services in the Treasure Valley. Serving our neighbors with honesty, professionalism, and integrity."
primaryButton={{
text: "Book Appointment",
href: "#contact",
}}
secondaryButton={{
text: "Our Services",
href: "#services",
}}
imageSrc="http://img.b2bpic.net/free-photo/portrait-professional-engineer-standing-front-fixed-air-conditioner-proud-work-done-skilled-technician-contracted-by-customer-happy-with-smooth-maintenance-hvac-system-components_482257-70160.jpg"
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
<>
<HeroSection />
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutFeaturesSplit
tag="About Our Team"
title="Decades of Excellence in Treasure Valley"
description="We are a family-owned HVAC provider dedicated to thorough diagnostics and cost-effective solutions. Whether it's a furnace repair or an AC unit installation, we treat your home with the care it deserves."
items={[
{
icon: Wrench,
title: "Expert Repair",
description: "Experienced technicians specializing in complex furnace and AC issues.",
},
{
icon: ListChecks,
title: "Thorough Diagnostics",
description: "We diagnose the root cause to provide the best long-term solution.",
},
{
icon: Clock,
title: "On-Time Service",
description: "Reliable scheduling with communication every step of the way.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/low-angle-man-working-as-plumber_23-2150746301.jpg"
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
<AboutSection />
<div id="services" data-section="services">
<SectionErrorBoundary name="services">
<FeaturesComparison
tag="What We Do"
title="Comprehensive HVAC Solutions"
description="From minor tune-ups to major system replacements, we handle it all with a commitment to quality."
negativeItems={[
"High-pressure sales tactics",
"Generic, quick-fix patches",
"Delayed communication updates",
]}
positiveItems={[
"Thorough system diagnostics",
"Cost-effective repair solutions",
"Professional & courteous communication",
"Expert furnace & duct services",
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
<ServicesSection />
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<MetricsIconCards
tag="Why Choose Us"
title="Proven Track Record"
description="Backed by hundreds of satisfied customers in Meridian and the Treasure Valley."
metrics={[
{
icon: Star,
title: "Google Rating",
value: "5.0+",
},
{
icon: Users,
title: "Happy Clients",
value: "350+",
},
{
icon: CheckCircle,
title: "Years Servicing",
value: "10+",
},
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
<MetricsSection />
<div id="team" data-section="team">
<SectionErrorBoundary name="team">
<TeamProfileCards
tag="Our Experts"
title="Meet the Team"
description="Highly trained, professional, and respectful technicians ready to solve your home comfort issues."
items={[
{
title: "Steve",
description: "Owner & Lead Technician with over a decade of HVAC expertise.",
avatarSrc: "http://img.b2bpic.net/free-photo/vertical-shot-young-musician-woman-learns-how-play-ukulele-sits-sofa-with-crossed-legs_1258-204931.jpg",
buttonText: "Contact Steve",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-black-woman-smile-camera_197531-33139.jpg",
},
{
title: "Nick",
description: "Lead Technician known for his professional and courteous service.",
avatarSrc: "http://img.b2bpic.net/free-photo/smiling-man-pointing-paper-house_23-2147694202.jpg",
buttonText: "Learn More",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-excited-person-portrait_23-2151186716.jpg",
},
{
title: "Cam",
description: "Skilled Technician committed to thorough and efficient repairs.",
avatarSrc: "http://img.b2bpic.net/free-photo/upbeat-saleswoman-hired-explain-vehicle-pricing-options-clients_482257-118422.jpg",
buttonText: "Learn More",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5399.jpg",
},
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
<TeamSection />
<div id="reviews" data-section="reviews">
<SectionErrorBoundary name="reviews">
<TestimonialTrustCard
quote="This company is amazing to work with and absolutely the best. I cannot recommend them enough to anyone. On time, very thorough with the diagnostic of the problem and explained the best cost effective way to fix it."
rating={5}
author="Shawn Deidrich"
avatars={[
{
name: "Shawn D",
imageSrc: "http://img.b2bpic.net/free-photo/happy-handsome-dark-haired-latin-man-posing-with-arms-folded-kitchen_74855-8094.jpg",
},
{
name: "Roxanne G",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-carefree-brunette-woman-sitting-couch-living-room-online-shopping_1258-201984.jpg",
},
{
name: "Richard G",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-with-disposable-coffee-cup_107420-12311.jpg",
},
{
name: "April M",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-businessman-using-modern-smart-phone-young-happy-man-working-his-office-holding-cellphone_1391-602.jpg",
},
{
name: "Lora O",
imageSrc: "http://img.b2bpic.net/free-photo/courier-delivering-groceries-home_23-2149738006.jpg",
},
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
<ReviewsSection />
<div id="faq" data-section="faq">
<SectionErrorBoundary name="faq">
<FaqTabbedAccordion
tag="Common Questions"
title="Everything You Need to Know"
description="Find answers to frequently asked questions about our HVAC services."
categories={[
{
name: "General Services",
items: [
{
question: "What areas do you serve?",
answer: "We serve Meridian and the surrounding Treasure Valley area.",
},
{
question: "Are your technicians licensed?",
answer: "Yes, our team is fully licensed, trained, and highly professional.",
},
],
},
{
name: "Heating & AC",
items: [
{
question: "Do you repair older furnaces?",
answer: "Yes, we focus on cost-effective repairs rather than upselling new units.",
},
{
question: "How soon can you schedule?",
answer: "We pride ourselves on responsiveness. Contact us and we will coordinate the earliest opening.",
},
],
},
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
<FaqSection />
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
tag="Book Now"
text="Ready to get your home back to comfort? Contact us today to schedule your service."
primaryButton={{
text: "Call to Schedule",
href: "tel:5551234567",
}}
secondaryButton={{
text: "Contact by Email",
href: "mailto:info@meridianhvac.com",
}}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
<ContactSection />
</>
);
}

View File

@@ -0,0 +1,40 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "about" section.
import React from 'react';
import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
import { CheckCircle, Clock, ListChecks, Star, Users, Wrench } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function AboutSection(): React.JSX.Element {
return (
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutFeaturesSplit
tag="About Our Team"
title="Decades of Excellence in Treasure Valley"
description="We are a family-owned HVAC provider dedicated to thorough diagnostics and cost-effective solutions. Whether it's a furnace repair or an AC unit installation, we treat your home with the care it deserves."
items={[
{
icon: Wrench,
title: "Expert Repair",
description: "Experienced technicians specializing in complex furnace and AC issues.",
},
{
icon: ListChecks,
title: "Thorough Diagnostics",
description: "We diagnose the root cause to provide the best long-term solution.",
},
{
icon: Clock,
title: "On-Time Service",
description: "Reliable scheduling with communication every step of the way.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/low-angle-man-working-as-plumber_23-2150746301.jpg"
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,28 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "contact" section.
import React from 'react';
import ContactCta from '@/components/sections/contact/ContactCta';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ContactSection(): React.JSX.Element {
return (
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
tag="Book Now"
text="Ready to get your home back to comfort? Contact us today to schedule your service. Located at 880 E Franklin Rd Ste 313, Meridian, ID 83642. Open 9 AM to 5 PM daily, seven days a week."
primaryButton={{
text: "Call to Schedule",
href: "tel:5551234567",
}}
secondaryButton={{
text: "Contact by Email",
href: "mailto:info@meridianhvac.com",
}}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,49 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "faq" section.
import React from 'react';
import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function FaqSection(): React.JSX.Element {
return (
<div id="faq" data-section="faq">
<SectionErrorBoundary name="faq">
<FaqTabbedAccordion
tag="Common Questions"
title="Everything You Need to Know"
description="Find answers to frequently asked questions about our HVAC services."
categories={[
{
name: "General Services",
items: [
{
question: "What areas do you serve?",
answer: "We serve Meridian and the surrounding Treasure Valley area.",
},
{
question: "Are your technicians licensed?",
answer: "Yes, our team is fully licensed, trained, and highly professional.",
},
],
},
{
name: "Heating & AC",
items: [
{
question: "Do you repair older furnaces?",
answer: "Yes, we focus on cost-effective repairs rather than upselling new units.",
},
{
question: "How soon can you schedule?",
answer: "We pride ourselves on responsiveness. Contact us and we will coordinate the earliest opening.",
},
],
},
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,20 @@
// Created by add_section_from_catalog (HeroBillboard).
import React from 'react';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
export default function HeroSection(): React.JSX.Element {
return (
<div data-webild-section="hero" id="hero">
<HeroBillboard
imageSrc="http://img.b2bpic.net/free-photo/portrait-professional-engineer-standing-front-fixed-air-conditioner-proud-work-done-skilled-technician-contracted-by-customer-happy-with-smooth-maintenance-hvac-system-components_482257-70160.jpg"
tag="AC&HS Meridian"
secondaryButton={{"href":"#services","text":"Our Services"}}
textAnimation="slide-up"
description="Providing expert HVAC repair, furnace diagnostics, and duct replacement services in the Treasure Valley. Serving our neighbors with honesty, professionalism, and integrity."
title="Air Conditioning & Heating Service of Meridian"
primaryButton={{"href":"#contact","text":"Book Appointment"}}
/>
</div>
);
}

View File

@@ -0,0 +1,39 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "metrics" section.
import React from 'react';
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
import { CheckCircle, Clock, ListChecks, Star, Users, Wrench } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function MetricsSection(): React.JSX.Element {
return (
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<MetricsIconCards
tag="Why Choose Us"
title="Proven Track Record"
description="Backed by hundreds of satisfied customers in Meridian and the Treasure Valley."
metrics={[
{
icon: Star,
title: "Google Rating",
value: "5.0+",
},
{
icon: Users,
title: "Happy Clients",
value: "350+",
},
{
icon: CheckCircle,
title: "Years Servicing",
value: "10+",
},
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,43 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "reviews" section.
import React from 'react';
import TestimonialTrustCard from '@/components/sections/testimonial/TestimonialTrustCard';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ReviewsSection(): React.JSX.Element {
return (
<div id="reviews" data-section="reviews">
<SectionErrorBoundary name="reviews">
<TestimonialTrustCard
quote="This company is amazing to work with and absolutely the best. I cannot recommend them enough to anyone. On time, very thorough with the diagnostic of the problem and explained the best cost effective way to fix it. I wish I could give them more stars."
rating={5}
author="Shawn Deidrich"
avatars={[
{
name: "Shawn D",
imageSrc: "http://img.b2bpic.net/free-photo/happy-handsome-dark-haired-latin-man-posing-with-arms-folded-kitchen_74855-8094.jpg",
},
{
name: "Roxanne G",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-carefree-brunette-woman-sitting-couch-living-room-online-shopping_1258-201984.jpg",
},
{
name: "Richard G",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-with-disposable-coffee-cup_107420-12311.jpg",
},
{
name: "April M",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-businessman-using-modern-smart-phone-young-happy-man-working-his-office-holding-cellphone_1391-602.jpg",
},
{
name: "Lora O",
imageSrc: "http://img.b2bpic.net/free-photo/courier-delivering-groceries-home_23-2149738006.jpg",
},
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,32 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "services" section.
import React from 'react';
import FeaturesComparison from '@/components/sections/features/FeaturesComparison';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ServicesSection(): React.JSX.Element {
return (
<div id="services" data-section="services">
<SectionErrorBoundary name="services">
<FeaturesComparison
tag="What We Do"
title="Comprehensive HVAC Solutions"
description="From minor tune-ups to major system replacements, we handle it all with a commitment to quality."
negativeItems={[
"High-pressure sales tactics",
"Generic, quick-fix patches",
"Delayed communication updates",
]}
positiveItems={[
"Thorough system diagnostics",
"Cost-effective repair solutions",
"Professional & courteous communication",
"Expert furnace & duct services",
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,44 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "team" section.
import React from 'react';
import TeamProfileCards from '@/components/sections/team/TeamProfileCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TeamSection(): React.JSX.Element {
return (
<div id="team" data-section="team">
<SectionErrorBoundary name="team">
<TeamProfileCards
tag="Our Experts"
title="Meet the Team"
description="Highly trained, professional, and respectful technicians ready to solve your home comfort issues."
items={[
{
title: "Steve",
description: "Owner & Lead Technician with over a decade of HVAC expertise.",
avatarSrc: "http://img.b2bpic.net/free-photo/vertical-shot-young-musician-woman-learns-how-play-ukulele-sits-sofa-with-crossed-legs_1258-204931.jpg",
buttonText: "Contact Steve",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-black-woman-smile-camera_197531-33139.jpg",
},
{
title: "Nick",
description: "Lead Technician known for his professional and courteous service.",
avatarSrc: "http://img.b2bpic.net/free-photo/smiling-man-pointing-paper-house_23-2147694202.jpg",
buttonText: "Learn More",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-excited-person-portrait_23-2151186716.jpg",
},
{
title: "Cam",
description: "Skilled Technician committed to thorough and efficient repairs.",
avatarSrc: "http://img.b2bpic.net/free-photo/upbeat-saleswoman-hired-explain-vehicle-pricing-options-clients_482257-118422.jpg",
buttonText: "Learn More",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5399.jpg",
},
]}
textAnimation="slide-up"
/>
</SectionErrorBoundary>
</div>
);
}