import { useLocation, Link } from "react-router-dom";
import { useEffect } from "react";
import { SEO } from "@/components/SEO";
const Gone = () => {
const location = useLocation();
useEffect(() => {
console.warn(
"410 Gone: User attempted to access permanently removed content:",
location.pathname
);
}, [location.pathname]);
return (
<>
Cette page n'existe plus. Le contenu a été supprimé ou déplacé suite à une refonte du site.