Files
Webserver/app/not-found.tsx

19 lines
683 B
TypeScript
Raw Normal View History

2026-02-08 23:18:21 -05:00
import Link from 'next/link';
export default function NotFound() {
return (
2026-05-25 09:49:40 -04:00
<div className="page-frame flex min-h-[60vh] flex-col items-center justify-center px-6 text-center">
<h1 className="mb-4 text-6xl font-medium text-ink">404</h1>
<p className="mb-8 text-lg text-muted">
2026-02-08 23:18:21 -05:00
This page doesn&apos;t exist.
</p>
<Link
href="/"
2026-05-25 09:49:40 -04:00
className="text-sm font-medium text-ink underline decoration-line-strong underline-offset-4 transition-colors hover:text-accent hover:decoration-accent"
2026-02-08 23:18:21 -05:00
>
&larr; Back to home
</Link>
</div>
);
}