20 lines
637 B
TypeScript
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're looking for doesn'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>
|
|
);
|
|
}
|