learning_ai_common_plat/dashboards/tracker-web/src/app/not-found.tsx

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&apos;re looking for doesn&apos;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>
);
}