{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "stats-2",
  "title": "Minimal Numbers Band",
  "description": "Minimal four-up stats row of oversized numbers and short labels under one heading, with no icons, badges, dividers, or secondary copy.",
  "files": [
    {
      "path": "registry/blocks/stats/2/stats-block.tsx",
      "content": "const stats = [\n  { value: \"$2.4B\", label: \"Revenue processed\" },\n  { value: \"38 ms\", label: \"Median latency\" },\n  { value: \"99.98%\", label: \"Uptime last 12 mo\" },\n  { value: \"6,200+\", label: \"Businesses onboarded\" },\n]\n\nexport default function StatsBlock() {\n  return (\n    <section className=\"flex w-full items-center justify-center bg-background px-6 py-16 text-foreground\">\n      <div className=\"mx-auto w-full max-w-5xl\">\n        <h2 className=\"mb-12 text-center font-heading text-2xl font-semibold tracking-tight sm:text-3xl\">\n          Acme by the numbers\n        </h2>\n\n        <dl className=\"grid grid-cols-2 gap-y-10 md:grid-cols-4 md:gap-y-0\">\n          {stats.map(({ value, label }) => (\n            <div\n              key={label}\n              className=\"flex flex-col items-center gap-2 text-center\"\n            >\n              <dt className=\"text-5xl font-bold tracking-tight tabular-nums sm:text-6xl\">\n                {value}\n              </dt>\n              <dd className=\"text-sm text-muted-foreground\">{label}</dd>\n            </div>\n          ))}\n        </dl>\n      </div>\n    </section>\n  )\n}\n",
      "type": "registry:component",
      "target": "components/blocks/stats-2.tsx"
    }
  ],
  "meta": {
    "height": "308px",
    "tier": "free"
  },
  "categories": [
    "stats"
  ],
  "type": "registry:block"
}