14 lines
371 B
TypeScript
14 lines
371 B
TypeScript
|
|
import { Link } from '$shared/ui';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Custom 404 page — shown for any unmatched route.
|
||
|
|
*/
|
||
|
|
export default function NotFound() {
|
||
|
|
return (
|
||
|
|
<main className="flex-1 flex flex-col items-center justify-center gap-6">
|
||
|
|
<h1 className="font-heading text-[clamp(8rem,20vw,18rem)] leading-none">404</h1>
|
||
|
|
<Link href="/">Back to main</Link>
|
||
|
|
</main>
|
||
|
|
);
|
||
|
|
}
|