Files
personal-website/src/app/not-found.tsx
T
2025-08-27 10:02:41 +02:00

17 lines
489 B
TypeScript

import Link from "next/link";
export default function NotFound() {
return (
<div className="flex min-h-[calc(100vh-200px)] flex-col items-center justify-center">
<h2 className="mb-4 text-3xl font-bold">404 - Not Found</h2>
<p className="mb-6">Could not find the requested resource</p>
<Link
href="/"
className="rounded-md bg-primary px-4 py-2 text-primary-foreground hover:bg-primary/90"
>
Return Home
</Link>
</div>
);
}