diff --git a/docker/team-page.tsx b/docker/team-page.tsx index 1058ce9..b3fdf54 100644 --- a/docker/team-page.tsx +++ b/docker/team-page.tsx @@ -1,19 +1,15 @@ // @ts-nocheck -import { useEffect, useState } from 'react'; +import Head from 'next/head'; export default function TeamPage() { - const [mounted, setMounted] = useState(false); - - useEffect(() => { - setMounted(true); - // Rediriger vers team.html qui contient les vraies visualisations - if (typeof window !== 'undefined') { - window.location.href = '/team.html'; - } - }, []); - - if (!mounted) { - return ( + return ( + <> +
+ + +