You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
643 B
TypeScript

import LoginForm from '@/app/ui/login-form';
export default function LoginPage() {
return (
<main className="flex items-center justify-center min-h-screen bg-neutral-50 dark:bg-neutral-950">
<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 w-full items-end rounded-lg bg-blue-600 p-3 mb-2 shadow-sm">
<div className="w-32 text-white font-bold text-2xl">
TAM Finance
</div>
</div>
<LoginForm />
</div>
</main>
);
}