{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "register-01",
  "title": "Centered sign-up card",
  "description": "Sister to login-01 — centered card with full name, email, password and a primary Create-account CTA.",
  "registryDependencies": [
    "button",
    "input"
  ],
  "files": [
    {
      "path": "content/components/register/register-01.tsx",
      "content": "\nimport { Button } from \"@/components/ui/button\"\nimport { Input } from \"@/components/ui/input\"\n\nexport default function Register01() {\n  return (\n    <section className=\"flex min-h-dvh items-center justify-center bg-background px-6 py-16\">\n      <div className=\"w-full max-w-sm rounded-2xl border border-border bg-card p-6 shadow-sm shadow-black/5 sm:p-8\">\n        <div className=\"flex flex-col items-center gap-3 text-center\">\n          {/* eslint-disable-next-line @next/next/no-img-element */}\n          <img\n            src=\"https://blockus.lndevui.com/brand/logo.svg\"\n            alt=\"blockus\"\n            className=\"size-8 dark:invert\"\n          />\n          <h1 className=\"font-semibold text-xl tracking-tight\">\n            Create your account\n          </h1>\n          <p className=\"text-sm text-muted-foreground\">\n            Get started with blockus in under a minute.\n          </p>\n        </div>\n        <form className=\"mt-6 flex flex-col gap-3\">\n          <Input placeholder=\"Full name\" />\n          <Input type=\"email\" placeholder=\"Work email\" />\n          <Input type=\"password\" placeholder=\"Password\" />\n          <Button size=\"lg\" className=\"rounded-lg\">\n            Create account\n          </Button>\n        </form>\n        <p className=\"mt-6 text-center text-xs text-muted-foreground\">\n          Already have one?{\" \"}\n          <a href=\"#\" className=\"text-foreground underline-offset-4 hover:underline\">\n            Sign in\n          </a>\n        </p>\n      </div>\n    </section>\n  )\n}\n",
      "type": "registry:block",
      "target": "components/blocks/register-01.tsx"
    }
  ],
  "categories": [
    "register"
  ],
  "type": "registry:block"
}