sunnymh-manga-site/app/not-found.tsx
2026-03-25 22:20:37 +08:00

20 lines
637 B
TypeScript

import Link from "next/link";
export default function NotFound() {
return (
<div className="flex flex-col items-center justify-center min-h-[60vh] px-4 text-center">
<div className="text-6xl font-bold text-accent mb-4">404</div>
<h1 className="text-xl font-semibold mb-2">Page not found</h1>
<p className="text-muted mb-6">
The page you&apos;re looking for doesn&apos;t exist.
</p>
<Link
href="/"
className="px-6 py-2.5 bg-accent hover:bg-accent-hover text-white text-sm font-semibold rounded-xl transition-colors"
>
Back to Home
</Link>
</div>
);
}