Files
codetutor/frontend/src/app/not-found.tsx
T
2025-04-29 21:06:13 +01:00

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