{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "register-02",
  "title": "One-field email signup",
  "description": "Headline-led signup with a single pill-shaped email + button — for ungated lead capture.",
  "dependencies": [
    "lucide-react"
  ],
  "registryDependencies": [
    "button",
    "input"
  ],
  "files": [
    {
      "path": "content/components/register/register-02.tsx",
      "content": "import { ArrowRight, Mail } from \"lucide-react\"\n\nimport { Button } from \"@/components/ui/button\"\nimport { Input } from \"@/components/ui/input\"\n\nexport default function Register02() {\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-md text-center\">\n        <h1\n          className=\"text-balance font-semibold tracking-tight\"\n          style={{ fontSize: \"clamp(1.85rem, 4.5vw, 2.75rem)\", letterSpacing: \"-0.03em\" }}\n        >\n          Start free, no card needed\n        </h1>\n        <p className=\"mt-3 text-sm text-muted-foreground\">\n          One field, magic link in your inbox, instant access to the free\n          catalog.\n        </p>\n        <form className=\"mx-auto mt-8 flex max-w-md flex-col items-center gap-2 rounded-full border border-border bg-card p-1.5 sm:flex-row\">\n          <Mail className=\"ml-3 size-4 shrink-0 text-muted-foreground\" />\n          <Input\n            type=\"email\"\n            placeholder=\"you@company.com\"\n            className=\"border-0 bg-transparent shadow-none focus-visible:ring-0 focus-visible:outline-none\"\n          />\n          <Button size=\"lg\" className=\"w-full rounded-full sm:w-auto\">\n            Get started\n            <ArrowRight />\n          </Button>\n        </form>\n        <p className=\"mt-4 text-xs text-muted-foreground\">\n          By signing up, you agree to the Terms and Privacy.\n        </p>\n      </div>\n    </section>\n  )\n}\n",
      "type": "registry:block",
      "target": "components/blocks/register-02.tsx"
    }
  ],
  "categories": [
    "register"
  ],
  "type": "registry:block"
}