Files
6db307df-aeec-4e6b-9e6e-b0a…/src/pages/HomePage/sections/Metrics.tsx
2026-06-22 19:54:32 +00:00

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, Heart, Shield, Smile, Sparkles, Star, 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="Healthy Growth Statistics"
description="Evidence-based results for every family."
metrics={[
{
icon: CheckCircle,
title: "Happy Families",
value: "500+",
},
{
icon: Smile,
title: "Milestones Reached",
value: "1200",
},
{
icon: Heart,
title: "Weekly Sessions",
value: "40+",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}