{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "auth-verify-email-page", "dependencies": [ "@inertiajs/react" ], "registryDependencies": [ "@launch/auth-layout", "button" ], "files": [ { "path": "registry/new-york-v4/pages/auth/verify-email.tsx", "content": "import { Form, Head } from \"@inertiajs/react\";\nimport { Button } from \"@/components/ui/button\";\nimport { Spinner } from \"@/components/ui/spinner\";\nimport { send } from \"@/routes/verification\";\n\ntype Props = {\n status?: string;\n};\n\nexport default function VerifyEmail({ status }: Props) {\n return (\n <>\n \n\n
\n

Please verify your email address by clicking the link we sent you.

\n\n {status === \"verification-link-sent\" && (\n

\n A new verification link has been sent to your email address.\n

\n )}\n\n
\n {({ processing }) => (\n \n )}\n
\n
\n \n );\n}\n\nVerifyEmail.layout = {\n title: \"Verify email\",\n description: \"Confirm your email address to continue\",\n};\n", "type": "registry:file", "target": "resources/js/pages/auth/verify-email.tsx" } ], "type": "registry:block" }