fix: Update PrimeReact and fix all compilation errors

This commit is contained in:
Lions Dev
2025-10-13 05:18:02 +02:00
parent 6ebca4945c
commit 96eb956b0b
793 changed files with 11998 additions and 10690 deletions

21
app/login/page.tsx Executable file
View File

@@ -0,0 +1,21 @@
'use client';
import React from 'react';
import { useRouter } from 'next/navigation';
const LoginPage = () => {
const router = useRouter();
React.useEffect(() => {
// Rediriger vers la page de connexion dans auth
router.replace('/auth/login');
}, [router]);
return (
<div>
<p>Redirection vers la connexion...</p>
</div>
);
};
export default LoginPage;