import { useUser } from "../hooks/useUser"; import { Link } from "react-router-dom"; import Nav from "../components/ui/Nav"; import coverWorker from "../assets/img/illustrations/cover_worker.svg"; import screenWorker1 from "../assets/img/illustrations/lhoist-accueil-personnage-femme.svg"; import screenWorker2 from "../assets/img/illustrations/lhoist-accueil-personnage-homme.svg"; import AnimatedPage from "../components/AnimatedPage"; import BrandingLogo from "../components/ui/LhoistBrandingLogo.jsx"; import Clouds from "../components/animations/Clouds"; import CookiesModal from "../components/Modals/CookiesModal.jsx"; export default function Home() { const { screensTranslations } = useUser(); if (!screensTranslations || !screensTranslations.home) return

loading

; const currentScreenTranslations = screensTranslations.home; const uiTranslations = screensTranslations.ui; return ( <>
); }