remove unused login page

This commit is contained in:
timhaller 2023-12-10 21:37:31 +01:00
parent 2bdde7b149
commit 538358b4ee
1 changed files with 0 additions and 14 deletions

View File

@ -1,14 +0,0 @@
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>
);
}