Files
ae6c83bb-dfec-4db1-9b42-eac…/src/pages/HomePage/sections/About.tsx

41 lines
1.7 KiB
TypeScript

// 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>
);
}