28 lines
818 B
TypeScript
28 lines
818 B
TypeScript
import { redirect } from 'next/navigation';
|
|
import { getCurrentUser, login } from '@/lib/auth';
|
|
import LoginForm from '@/components/LoginForm';
|
|
|
|
export default async function LoginPage() {
|
|
const user = await getCurrentUser();
|
|
|
|
if (user) {
|
|
redirect('/dashboard');
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gray-50 dark:bg-gray-900">
|
|
<div className="max-w-md w-full space-y-8 p-8">
|
|
<div>
|
|
<h2 className="mt-6 text-center text-3xl font-extrabold text-gray-900 dark:text-white">
|
|
Connexion à votre compte
|
|
</h2>
|
|
<p className="mt-2 text-center text-sm text-gray-600 dark:text-gray-400">
|
|
Accédez à votre tableau de bord
|
|
</p>
|
|
</div>
|
|
<LoginForm />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|