Leaflet Blog in Deno Fresh
1import { Head } from "$fresh/runtime.ts";
2
3export default function Error404() {
4 return (
5 <>
6 <Head>
7 <title>404 - Page not found</title>
8 </Head>
9 <div class="px-4 py-8 mx-auto bg-[#86efac]">
10 <div class="max-w-screen-md mx-auto flex flex-col items-center justify-center">
11 <img
12 class="my-6"
13 src="/logo.svg"
14 width="128"
15 height="128"
16 alt="the Fresh logo: a sliced lemon dripping with juice"
17 />
18 <h1 class="text-4xl font-bold">404 - Page not found</h1>
19 <p class="my-4">
20 The page you were looking for doesn't exist.
21 </p>
22 <a href="/" class="underline">Go back home</a>
23 </div>
24 </div>
25 </>
26 );
27}