{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "team-01",
  "title": "Simple 4-up headshot grid",
  "description": "Minimal four-member grid with circular avatars, names, and roles — no cards, no decoration, pure structure.",
  "files": [
    {
      "path": "content/components/team/team-01.tsx",
      "content": "export default function Team01() {\n  const members = [\n    { name: \"Marcus Holt\", role: \"Chief Executive Officer\", img: \"https://i.pravatar.cc/160?img=11\" },\n    { name: \"Priya Anand\", role: \"Head of Design\", img: \"https://i.pravatar.cc/160?img=47\" },\n    { name: \"Jonas Weber\", role: \"Lead Engineer\", img: \"https://i.pravatar.cc/160?img=15\" },\n    { name: \"Sena Okoro\", role: \"Head of Product\", img: \"https://i.pravatar.cc/160?img=44\" },\n  ]\n\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=\"mb-14 text-center\">\n          <h2 className=\"text-3xl font-semibold tracking-tight text-foreground sm:text-4xl\">\n            The people behind it\n          </h2>\n          <p className=\"mt-3 text-base text-muted-foreground text-balance\">\n            A focused team shipping at high velocity.\n          </p>\n        </div>\n\n        <div className=\"grid grid-cols-2 gap-8 sm:grid-cols-4\">\n          {members.map((m) => (\n            <div key={m.name} className=\"flex flex-col items-center gap-4 text-center\">\n              {/* eslint-disable-next-line @next/next/no-img-element */}\n              <img\n                src={m.img}\n                alt={m.name}\n                className=\"size-20 rounded-full object-cover ring-2 ring-border\"\n              />\n              <div>\n                <p className=\"text-sm font-semibold text-foreground\">{m.name}</p>\n                <p className=\"mt-0.5 text-xs text-muted-foreground\">{m.role}</p>\n              </div>\n            </div>\n          ))}\n        </div>\n      </div>\n    </section>\n  )\n}\n",
      "type": "registry:block",
      "target": "components/blocks/team-01.tsx"
    }
  ],
  "categories": [
    "team"
  ],
  "type": "registry:block"
}