chore: initialize Next.js project baseline

This commit is contained in:
2026-07-01 06:27:09 -07:00
commit 7f227c5f2a
53 changed files with 5894 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import { AuthPanel } from "@/modules/auth/components/AuthPanel";
export default function LoginPage(): React.ReactElement {
return <AuthPanel mode="login" />;
}

View File

@@ -0,0 +1,5 @@
import { AuthPanel } from "@/modules/auth/components/AuthPanel";
export default function RegisterPage(): React.ReactElement {
return <AuthPanel mode="register" />;
}

View File

@@ -0,0 +1,5 @@
import { AuthPanel } from "@/modules/auth/components/AuthPanel";
export default function SetupPage(): React.ReactElement {
return <AuthPanel mode="setup" />;
}