'use client'; import Link from 'next/link'; import { motion } from 'framer-motion'; export default function NotFound() { // variante pour les animations const containerVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.2 } } }; const itemVariants = { hidden: { opacity: 0, y: 20 }, visible: { opacity: 1, y: 0 } }; // animation du chiffre 404 const textVariants = { hidden: { opacity: 0, scale: 0.8 }, visible: { opacity: 1, scale: 1, transition: { duration: 0.8, ease: [0.43, 0.13, 0.23, 0.96] } } }; return (
4 0 4
Page Non Trouvée Oups ! La page que vous recherchez n'existe pas ou a été déplacée. Retour à l'accueil
); }