- Replace Vite + React Router with Next.js 15 App Router - Implement i18n with next-intl (URL-based: /de, /en, /sr) - Add SSR/SSG for all pages (48 static pages generated) - Setup Supabase SSR client for auth - Migrate all pages: Home, About, Portfolio, Blog, Contact, Login, Dashboard, Imprint, Privacy, Terms - Add Docker support with standalone output - Replace i18next with next-intl JSON translations - Use next/image for optimized images Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
24 lines
768 B
TypeScript
24 lines
768 B
TypeScript
import Link from 'next/link';
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<html lang="de">
|
|
<body className="bg-zinc-900 text-zinc-50 min-h-screen flex items-center justify-center">
|
|
<div className="text-center px-4">
|
|
<h1 className="text-6xl font-bold mb-4">404</h1>
|
|
<h2 className="text-2xl font-semibold mb-4">Page Not Found</h2>
|
|
<p className="text-zinc-400 mb-8">
|
|
The page you are looking for does not exist or has been moved.
|
|
</p>
|
|
<Link
|
|
href="/de"
|
|
className="px-6 py-3 bg-blue-600 hover:bg-blue-700 text-white rounded-lg transition-colors inline-block"
|
|
>
|
|
Go to Homepage
|
|
</Link>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|