import Image from 'next/image'; import error404 from '@/public/assets/404.png'; export default function NotFound() { const random = Math.floor(Math.random() * 100); if (random > 50) { return (

Oh non! Un François 404

François 404
); } else { return (

Oh non! Ce puzzle est introuvable

); } }