1.1.2Updated a month ago
import { Head } from "$fresh/runtime.ts";

export default function Error404() {
  return (
    <>
      <Head>
        <title>404 - Page not found</title>
      </Head>
      <div class="flex flex-col items-center justify-center px-8 pt-16">
        <h1 class="text-3xl font-bold text-center">These are not the packages you are looking for.</h1>
        <p class="my-8">
          The page you were looking for doesn't exist.
        </p>
        <a href="/" class="underline">Go back home</a>
      </div>
    </>
  );
}