19 lines
544 B
TypeScript
19 lines
544 B
TypeScript
import Link from "next/link";
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<div className="text-center py-12">
|
|
<h1 className="text-4xl font-bold mb-4">404</h1>
|
|
<p className="text-[var(--muted-foreground)] mb-6">
|
|
The page you're looking for doesn't exist.
|
|
</p>
|
|
<Link
|
|
href="/"
|
|
className="inline-block px-6 py-3 bg-[var(--primary)] text-[var(--primary-foreground)] rounded-lg font-medium hover:opacity-90 transition-opacity"
|
|
>
|
|
Go Home
|
|
</Link>
|
|
</div>
|
|
);
|
|
}
|