22 lines
735 B
TypeScript
22 lines
735 B
TypeScript
import Link from 'next/link';
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<div className="flex min-h-screen items-center justify-center p-4">
|
|
<div className="mx-auto max-w-md text-center">
|
|
<div className="mb-4 text-6xl font-bold text-muted-foreground">404</div>
|
|
<h2 className="mb-2 text-xl font-semibold">Page not found</h2>
|
|
<p className="mb-6 text-sm text-muted-foreground">
|
|
The page you're looking for doesn't exist or has been moved.
|
|
</p>
|
|
<Link
|
|
href="/"
|
|
className="rounded-md bg-primary px-4 py-2 text-sm font-medium text-primary-foreground hover:bg-primary/90"
|
|
>
|
|
Go Home
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|