mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-05-09 19:01:47 +00:00
12 lines
293 B
TypeScript
12 lines
293 B
TypeScript
import { LoginForm } from "@/features/auth/components/login-form";
|
|
|
|
export default function LoginPage() {
|
|
return (
|
|
<div className="flex min-h-svh flex-col items-center justify-center p-6 md:p-10">
|
|
<div className="w-full max-w-sm md:max-w-4xl">
|
|
<LoginForm />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|