22 lines
786 B
TypeScript
22 lines
786 B
TypeScript
import Link from 'next/link';
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<main className="min-h-screen flex items-center justify-center bg-deep-graphite text-white px-6">
|
|
<div className="max-w-md text-center space-y-4">
|
|
<h1 className="text-3xl font-semibold">Page not found</h1>
|
|
<p className="text-sm text-gray-400">
|
|
The page you requested doesn't exist (or isn't available in this mode).
|
|
</p>
|
|
<div className="pt-2">
|
|
<Link
|
|
href="/"
|
|
className="inline-flex items-center justify-center rounded-md bg-primary-blue px-4 py-2 text-sm font-medium text-white hover:bg-primary-blue/80 transition-colors"
|
|
>
|
|
Drive home
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
);
|
|
} |