13 lines
278 B
TypeScript
13 lines
278 B
TypeScript
import { LoginForm } from "@/modules/auth/login-form";
|
|
|
|
|
|
export default function Page() {
|
|
return (
|
|
<div className="flex min-h-svh w-full items-center justify-center p-6 md:p-10">
|
|
<div className="w-full max-w-sm">
|
|
<LoginForm />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|