Files
wr.do/app/not-found.tsx
2024-07-26 22:08:57 +08:00

28 lines
757 B
TypeScript

import Image from "next/image";
import Link from "next/link";
export default function NotFound() {
return (
<div className="flex min-h-screen flex-col items-center justify-center">
<h1 className="text-6xl font-bold">404</h1>
<Image
src="/_static/illustrations/rocket-crashed.svg"
alt="404"
width={400}
height={400}
className="pointer-events-none mb-5 mt-6 dark:invert"
/>
<p className="text-balance px-4 text-center text-2xl font-medium">
Page not found. Back to{" "}
<Link
href="/"
className="text-muted-foreground underline underline-offset-4 hover:text-blue-500"
>
Homepage
</Link>
.
</p>
</div>
);
}