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