"use client"; /** * Metrics — four headline results with animated count-up on scroll-in. * The ROAS metric is the single emerald-accented "signature" number. */ import Reveal from "./Reveal"; import CountUp from "./CountUp"; import { metrics } from "../content"; export default function Metrics() { return (

The numbers

Results we can show you.

{metrics.map((m) => (

{m.label}

))}
); }