{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "nextjs-waitlist-page",
  "type": "registry:page",
  "title": "Clerk Next.js Waitlist Page (App Router)",
  "description": "A waitlist page for Next.js App Router with Clerk authentication.",
  "dependencies": [
    "@clerk/nextjs"
  ],
  "files": [
    {
      "path": "nextjs/aio/waitlist-page/page.tsx",
      "content": "import { Waitlist } from '@clerk/nextjs';\n\nexport default function WaitlistPage() {\n  return (\n    <div className='bg-muted flex w-full flex-1 items-center justify-center p-6 md:p-10'>\n      <Waitlist />\n    </div>\n  );\n}\n",
      "type": "registry:page",
      "target": "app/waitlist/page.tsx"
    }
  ],
  "docs": "Before using the <Waitlist /> component, you must provide the waitlistUrl prop either in the <ClerkProvider> or <SignIn /> component to ensure proper functionality. https://clerk.com/docs/nextjs/components/waitlist"
}