peer-at-code-web/app/dashboard/puzzles/[id]/not-found.tsx
2023-04-22 10:18:01 +02:00

12 lines
386 B
TypeScript

import Image from 'next/image';
import error404 from '@/public/assets/404.png';
export default function NotFound() {
return (
<div className="m-auto flex h-screen flex-col items-center justify-center space-y-6">
<h2 className="text-6xl">Oh non! Un François 404</h2>
<Image priority src={error404} alt="François 404" width={1000} height={1000} />
</div>
);
}