mirror of
https://github.com/BradNut/nextjs-dashboard
synced 2025-09-08 17:40:30 +00:00
17 lines
519 B
TypeScript
17 lines
519 B
TypeScript
import AcmeLogo from "@/app/ui/acme-logo";
|
|
import LoginForm from "@/app/ui/login-form";
|
|
|
|
export default function LoginPage() {
|
|
return (
|
|
<main className="flex items-center justify-center md:h-screen">
|
|
<div className="relative mx-auto flex w-full max-w-[400px] flex-col space-y-2.5 p-4 md:-mt-32">
|
|
<div className="flex h-20 w-full items-end rounded-lg bg-blue-500 p-3 md:h-36">
|
|
<div className="w-32 text-white md:w-36">
|
|
<AcmeLogo />
|
|
</div>
|
|
</div>
|
|
<LoginForm />
|
|
</div>
|
|
</main>
|
|
);
|
|
}
|