{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "stats-10",
  "title": "3-stat kicker block",
  "description": "Three metrics under a kicker headline and subtitle, arranged in a clean centered flex row.",
  "files": [
    {
      "path": "content/components/stats/stats-10.tsx",
      "content": "const stats = [\n  { v: \"135\", l: \"Blocks shipped\", sub: \"Across 9 categories\" },\n  { v: \"12k+\", l: \"Builders\", sub: \"In production globally\" },\n  { v: \"< 5 min\", l: \"Time to integrate\", sub: \"With the shadcn CLI\" },\n]\n\nexport default function Stats10() {\n  return (\n    <section className=\"bg-background py-20 sm:py-28\">\n      <div className=\"mx-auto max-w-4xl px-6 sm:px-10\">\n        <div className=\"flex flex-col items-center gap-4 text-center\">\n          <span className=\"inline-flex items-center rounded-full border border-border bg-muted px-3 py-1 text-xs font-medium tracking-widest text-muted-foreground uppercase\">\n            Catalog · Q2 2025\n          </span>\n          <h2\n            className=\"text-balance font-semibold tracking-tight text-foreground\"\n            style={{\n              fontSize: \"clamp(2rem, 4.5vw, 3.25rem)\",\n              letterSpacing: \"-0.035em\",\n              lineHeight: 1.05,\n            }}\n          >\n            Fewer decisions. More shipping.\n          </h2>\n          <p className=\"max-w-lg text-base text-muted-foreground text-pretty\">\n            blockus sections drop into any stack. One command, production-ready output.\n          </p>\n        </div>\n\n        <dl className=\"mt-16 flex flex-col items-center gap-10 sm:flex-row sm:justify-center sm:gap-16\">\n          {stats.map((s, i) => (\n            <div key={i} className=\"flex flex-col items-center gap-1 text-center\">\n              <dd\n                className=\"font-semibold tabular-nums text-foreground\"\n                style={{\n                  fontSize: \"clamp(2.75rem, 5vw, 4rem)\",\n                  letterSpacing: \"-0.05em\",\n                  lineHeight: 1,\n                }}\n              >\n                {s.v}\n              </dd>\n              <dt className=\"text-sm font-semibold text-foreground\">{s.l}</dt>\n              <span className=\"text-xs text-muted-foreground\">{s.sub}</span>\n            </div>\n          ))}\n        </dl>\n      </div>\n    </section>\n  )\n}\n",
      "type": "registry:block",
      "target": "components/blocks/stats-10.tsx"
    }
  ],
  "categories": [
    "stats"
  ],
  "type": "registry:block"
}