chore: initialize Next.js project baseline
This commit is contained in:
5
app/(auth)/login/page.tsx
Normal file
5
app/(auth)/login/page.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import { AuthPanel } from "@/modules/auth/components/AuthPanel";
|
||||
|
||||
export default function LoginPage(): React.ReactElement {
|
||||
return <AuthPanel mode="login" />;
|
||||
}
|
||||
5
app/(auth)/register/page.tsx
Normal file
5
app/(auth)/register/page.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import { AuthPanel } from "@/modules/auth/components/AuthPanel";
|
||||
|
||||
export default function RegisterPage(): React.ReactElement {
|
||||
return <AuthPanel mode="register" />;
|
||||
}
|
||||
5
app/(auth)/setup/page.tsx
Normal file
5
app/(auth)/setup/page.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import { AuthPanel } from "@/modules/auth/components/AuthPanel";
|
||||
|
||||
export default function SetupPage(): React.ReactElement {
|
||||
return <AuthPanel mode="setup" />;
|
||||
}
|
||||
Reference in New Issue
Block a user