40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
// 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>
|
|
);
|
|
}
|