{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "stats-01",
  "title": "Three-stat row",
  "description": "Centered headline above a hairline-divided three-stat row — the safe default metric band.",
  "files": [
    {
      "path": "content/components/stats/stats-01.tsx",
      "content": "const stats = [\n  { v: \"12k+\", l: \"Builders shipping\" },\n  { v: \"99.9%\", l: \"Registry uptime\" },\n  { v: \"4.9 / 5\", l: \"Customer rating\" },\n]\n\nexport default function Stats01() {\n  return (\n    <section className=\"bg-background py-20 sm:py-28\">\n      <div className=\"mx-auto max-w-5xl px-6 sm:px-10\">\n        <div className=\"flex flex-col items-center gap-3 text-center\">\n          <span className=\"text-xs font-medium uppercase tracking-[0.18em] text-muted-foreground\">\n            By the numbers\n          </span>\n          <h2\n            className=\"text-balance font-semibold tracking-tight\"\n            style={{\n              fontSize: \"clamp(1.85rem, 4vw, 2.75rem)\",\n              letterSpacing: \"-0.03em\",\n              lineHeight: 1.08,\n            }}\n          >\n            Quiet numbers, loud results\n          </h2>\n        </div>\n\n        <dl className=\"mt-14 grid gap-px overflow-hidden rounded-2xl border border-border bg-border sm:grid-cols-3\">\n          {stats.map((s) => (\n            <div\n              key={s.l}\n              className=\"flex flex-col items-center justify-center gap-2 bg-card px-6 py-10 text-center\"\n            >\n              <dt className=\"text-xs font-medium uppercase tracking-widest text-muted-foreground\">\n                {s.l}\n              </dt>\n              <dd\n                className=\"font-semibold tracking-tight tabular-nums text-foreground\"\n                style={{\n                  fontSize: \"clamp(2.5rem, 5vw, 3.5rem)\",\n                  letterSpacing: \"-0.04em\",\n                  lineHeight: 1,\n                }}\n              >\n                {s.v}\n              </dd>\n            </div>\n          ))}\n        </dl>\n      </div>\n    </section>\n  )\n}\n",
      "type": "registry:block",
      "target": "components/blocks/stats-01.tsx"
    }
  ],
  "categories": [
    "stats"
  ],
  "type": "registry:block"
}