{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "about-1",
  "title": "Mission Statement With Stats",
  "description": "Centered about us intro built on a mission statement, with an eyebrow badge and a four-metric strip for founding year, customers, countries, and team size.",
  "dependencies": [
    "@base-ui/react"
  ],
  "registryDependencies": [
    "badge"
  ],
  "files": [
    {
      "path": "registry/blocks/about/1/about-block.tsx",
      "content": "import { Badge } from \"@/components/ui/badge\"\n\nconst stats = [\n  { value: \"2019\", label: \"Founded\" },\n  { value: \"12K+\", label: \"Customers\" },\n  { value: \"40\", label: \"Countries\" },\n  { value: \"85\", label: \"Team members\" },\n]\n\nexport default function AboutBlock() {\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-3xl text-center\">\n        <Badge variant=\"outline\" className=\"mb-6\">\n          About us\n        </Badge>\n        <h2 className=\"font-heading text-3xl font-bold tracking-tight text-balance sm:text-4xl\">\n          We are building the tools we always wished we had\n        </h2>\n        <p className=\"mx-auto mt-5 max-w-2xl text-lg/relaxed text-pretty text-muted-foreground\">\n          Acme started with a simple belief: building software should feel fast\n          and joyful. Today we help thousands of teams ship better products,\n          faster, without the busywork that slows great ideas down.\n        </p>\n\n        <dl className=\"mt-12 grid grid-cols-2 gap-8 border-t border-border pt-10 sm:grid-cols-4\">\n          {stats.map((stat) => (\n            <div key={stat.label} className=\"flex flex-col gap-1.5\">\n              <dt className=\"order-2 text-sm text-muted-foreground\">\n                {stat.label}\n              </dt>\n              <dd className=\"order-1 text-3xl font-bold tracking-tight tabular-nums\">\n                {stat.value}\n              </dd>\n            </div>\n          ))}\n        </dl>\n      </div>\n    </section>\n  )\n}\n",
      "type": "registry:component"
    }
  ],
  "meta": {
    "height": "523px",
    "tier": "free"
  },
  "categories": [
    "about"
  ],
  "type": "registry:block"
}