page.tsx25 lines · main
| 1 | import { AuthMigrationClient } from '../../migration/migration-client'; |
| 2 | |
| 3 | export const metadata = { title: 'Auth · import users' }; |
| 4 | export const dynamic = 'force-dynamic'; |
| 5 | |
| 6 | export default async function AuthProjectMigrationPage({ |
| 7 | params, |
| 8 | }: { |
| 9 | params: Promise<{ projectId: string }>; |
| 10 | }) { |
| 11 | const { projectId } = await params; |
| 12 | return ( |
| 13 | <section> |
| 14 | <header className="mb-6"> |
| 15 | <h2 className="font-mono text-lg tracking-tight text-[var(--color-text)]"> |
| 16 | import users |
| 17 | </h2> |
| 18 | <p className="mt-1 font-mono text-sm text-[var(--color-text-muted)]"> |
| 19 | move people from SuperTokens, Clerk, or another auth into this project |
| 20 | </p> |
| 21 | </header> |
| 22 | <AuthMigrationClient projectId={projectId} /> |
| 23 | </section> |
| 24 | ); |
| 25 | } |