{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "register-16",
  "title": "Centered sign-up card",
  "description": "Minimal centered card with name, email, password, and a sign-in link — the cleanest path to account creation.",
  "registryDependencies": [
    "button",
    "input"
  ],
  "files": [
    {
      "path": "content/components/register/register-16.tsx",
      "content": "import { Button } from \"@/components/ui/button\";\nimport { Input } from \"@/components/ui/input\";\n\nexport default function Register16() {\n  return (\n    <section className=\"flex min-h-screen items-center justify-center bg-background px-4 py-20\">\n      <div className=\"w-full max-w-sm\">\n        {/* Logo */}\n        <div className=\"mb-8 flex flex-col items-center gap-2\">\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          <span className=\"text-base font-medium tracking-tight\">blockus</span>\n        </div>\n\n        {/* Card */}\n        <div className=\"rounded-2xl border border-border bg-card p-8 shadow-2xl shadow-black/10\">\n          <div className=\"mb-6\">\n            <h1 className=\"text-2xl font-semibold tracking-tight text-foreground\">\n              Create your account\n            </h1>\n            <p className=\"mt-1 text-sm text-muted-foreground\">\n              Get started in under a minute.\n            </p>\n          </div>\n\n          <form className=\"flex flex-col gap-4\">\n            <div className=\"flex flex-col gap-1.5\">\n              <label\n                htmlFor=\"r16-name\"\n                className=\"text-sm font-medium text-foreground\"\n              >\n                Full name\n              </label>\n              <Input\n                id=\"r16-name\"\n                type=\"text\"\n                placeholder=\"Ada Lovelace\"\n                autoComplete=\"name\"\n              />\n            </div>\n\n            <div className=\"flex flex-col gap-1.5\">\n              <label\n                htmlFor=\"r16-email\"\n                className=\"text-sm font-medium text-foreground\"\n              >\n                Email\n              </label>\n              <Input\n                id=\"r16-email\"\n                type=\"email\"\n                placeholder=\"ada@example.com\"\n                autoComplete=\"email\"\n              />\n            </div>\n\n            <div className=\"flex flex-col gap-1.5\">\n              <label\n                htmlFor=\"r16-password\"\n                className=\"text-sm font-medium text-foreground\"\n              >\n                Password\n              </label>\n              <Input\n                id=\"r16-password\"\n                type=\"password\"\n                placeholder=\"Min. 8 characters\"\n                autoComplete=\"new-password\"\n              />\n            </div>\n\n            <Button type=\"submit\" className=\"mt-2 w-full rounded-full\">\n              Create account\n            </Button>\n          </form>\n\n          <p className=\"mt-6 text-center text-sm text-muted-foreground\">\n            Already have an account?{\" \"}\n            <a\n              href=\"/login\"\n              className=\"font-medium text-foreground underline-offset-4 hover:underline\"\n            >\n              Sign in\n            </a>\n          </p>\n        </div>\n\n        <p className=\"mt-6 text-center text-xs text-muted-foreground\">\n          By creating an account you agree to our{\" \"}\n          <a href=\"/license\" className=\"underline underline-offset-4\">\n            Terms\n          </a>{\" \"}\n          and{\" \"}\n          <a href=\"/license\" className=\"underline underline-offset-4\">\n            Privacy Policy\n          </a>\n          .\n        </p>\n      </div>\n    </section>\n  );\n}\n",
      "type": "registry:block",
      "target": "components/blocks/register-16.tsx"
    }
  ],
  "categories": [
    "register"
  ],
  "type": "registry:block"
}