Files
a264c47c-e7ee-4ec0-837a-279…/src/pages/HomePage/sections/Metrics.tsx

39 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 { Award, CheckCircle, Clock, Shield, Users, Zap } 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="Our Impact"
title="Serving You Better"
description="Numbers speak to our commitment to excellence and community satisfaction."
metrics={[
{
icon: Users,
title: "Happy Customers",
value: "10,000+",
},
{
icon: Award,
title: "Certified Repairs",
value: "25,000+",
},
{
icon: Clock,
title: "Operating Years",
value: "15+",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}