import { RevealOnView } from "@/components/shared/RevealOnView"; import { differentiators } from "@/data/site-content"; export function MetricsSection() { // Show the first four differentiators as a proof grid — real commitments // in place of the template's unverified statistics. const points = differentiators.slice(0, 4); return (
{points.map((point, index) => ( 0{index + 1}

{point.title}

{point.description}

))}
); }