This commit is contained in:
Timo Knuth 2026-01-13 16:39:04 +01:00
parent fb788d89d3
commit 9746fb970d
1 changed files with 59 additions and 53 deletions

View File

@ -2,8 +2,12 @@ import React from 'react';
import Link from 'next/link'; import Link from 'next/link';
import { Button } from '@/components/ui/Button'; import { Button } from '@/components/ui/Button';
import '@/styles/globals.css';
export default function NotFound() { export default function NotFound() {
return ( return (
<html lang="en">
<body>
<div className="min-h-screen bg-white flex items-center justify-center px-4"> <div className="min-h-screen bg-white flex items-center justify-center px-4">
<div className="max-w-2xl w-full text-center"> <div className="max-w-2xl w-full text-center">
{/* 404 Icon */} {/* 404 Icon */}
@ -59,5 +63,7 @@ export default function NotFound() {
</div> </div>
</div> </div>
</div> </div>
</body>
</html>
); );
} }