1
0
mirror of https://github.com/Fayorg/calendrier-avant.git synced 2026-05-27 17:18:38 +02:00

added michal's styles to the login page

This commit is contained in:
timhaller
2023-12-08 14:43:27 +01:00
parent 852bc7860c
commit 964e335c56
3 changed files with 56 additions and 7 deletions

14
app/login/page.tsx Normal file
View File

@@ -0,0 +1,14 @@
import LoginForm from "@components/custom"
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">
</div>
</div>
<LoginForm />
</div>
</main>
);
}