memorium/routes/_404.tsx

24 lines
681 B
TypeScript
Raw Permalink Normal View History

2023-07-26 13:47:01 +02:00
import { Head } from "$fresh/runtime.ts";
2025-01-18 00:46:05 +01:00
import { MainLayout } from "@components/layouts/main.tsx";
2023-07-26 13:47:01 +02:00
export default function Error404() {
return (
<>
<Head>
<title>404 - Page not found</title>
</Head>
2025-01-18 00:46:05 +01:00
<MainLayout>
<div class="px-8 text-white mt-10">
<div class="max-w-screen-md mx-auto flex flex-col items-center justify-center">
<h1 class="text-4xl font-bold">404 - Page not found</h1>
<p class="my-4">
The page you were looking for doesn't exist.
</p>
<a href="/" class="underline">Go back home</a>
</div>
2023-07-26 13:47:01 +02:00
</div>
2025-01-18 00:46:05 +01:00
</MainLayout>
2023-07-26 13:47:01 +02:00
</>
);
}