{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "extends": "none",
  "name": "auth-02",
  "title": "auth-02",
  "description": "auth-02",
  "dependencies": [
    "react-aria-components"
  ],
  "registryDependencies": [
    "https://intentui.com/r/avatar",
    "https://intentui.com/r/button",
    "https://intentui.com/r/field",
    "https://intentui.com/r/input",
    "https://intentui.com/r/link",
    "https://intentui.com/r/text",
    "https://intentui.com/r/text-field"
  ],
  "files": [
    {
      "path": "registry/blocks/auth-02/page.tsx",
      "content": "'use client'\n\nimport { Form } from 'react-aria-components/Form'\nimport { Avatar } from '@/components/ui/avatar'\nimport { Button } from '@/components/ui/button'\nimport { FieldError, Fieldset, Label, Legend } from '@/components/ui/field'\nimport { Input } from '@/components/ui/input'\nimport { Link } from '@/components/ui/link'\nimport { Text } from '@/components/ui/text'\nimport { TextField } from '@/components/ui/text-field'\n\nexport default function Component() {\n  return (\n    <main className=\"flex min-h-dvh items-center justify-center p-6\">\n      <div className=\"w-full max-w-sm\">\n        <Link href=\"#\" aria-label=\"Goto homepage\" className=\"mb-2 inline-block\">\n          <Avatar isSquare src=\"https://design.intentui.com/logo\" size=\"md\" />\n        </Link>\n        <Form>\n          <Fieldset>\n            <Legend className=\"text-xl/10\">Sign in</Legend>\n            <Text>\n              Access your account to manage projects, view analytics, and collaborate with your\n              team.\n            </Text>\n\n            <TextField isRequired>\n              <Label>Email</Label>\n              <Input placeholder=\"you@domain.com\" type=\"email\" />\n              <FieldError />\n            </TextField>\n            <div data-slot=\"control\">\n              <Button className=\"w-full\" type=\"submit\">\n                Get magic link\n              </Button>\n            </div>\n          </Fieldset>\n        </Form>\n      </div>\n    </main>\n  )\n}\n",
      "type": "registry:page",
      "target": "app/auth-02/page.tsx"
    }
  ],
  "type": "registry:block"
}