import { useLocation, Link } from "react-router-dom"; import { useEffect } from "react"; import { SEO } from "@/components/SEO"; const NotFound = () => { const location = useLocation(); useEffect(() => { console.error( "404 Error: User attempted to access non-existent route:", location.pathname ); }, [location.pathname]); return ( <>

404

Page non trouvée

Retour à l'accueil
); }; export default NotFound;