18 lines
545 B
TypeScript
18 lines
545 B
TypeScript
|
|
import Link from 'next/link';
|
||
|
|
import { Button } from '@/components/ui/button';
|
||
|
|
|
||
|
|
export default function NotFound() {
|
||
|
|
return (
|
||
|
|
<div className="flex flex-col items-center justify-center min-h-[60vh] text-center px-4">
|
||
|
|
<h1 className="text-6xl font-bold mb-4">404</h1>
|
||
|
|
<h2 className="text-2xl font-semibold mb-2">Page Not Found</h2>
|
||
|
|
<p className="text-muted-foreground mb-8">
|
||
|
|
The page you're looking for doesn't exist.
|
||
|
|
</p>
|
||
|
|
<Link href="/">
|
||
|
|
<Button>Go Home</Button>
|
||
|
|
</Link>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|