<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Bitplane</title>
    <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
  </head>

  <body class="min-h-screen bg-slate-50 text-slate-900">
    <main
      class="mx-auto flex min-h-screen w-full max-w-3xl flex-col justify-center px-6 py-12"
    >
      <section
        class="mx-auto w-full max-w-md rounded-lg border border-slate-200 bg-white p-8 text-center shadow-sm transition-transform transition-shadow hover:-translate-y-1 hover:shadow-md"
      >
        <p
          class="text-sm font-medium uppercase tracking-[0.2em] text-slate-500"
        >
          Error
        </p>

        <h1 class="mt-3 text-3xl font-bold tracking-tight">
          Something went wrong
        </h1>

        <p class="mt-4 text-sm leading-6 text-slate-600">
          Please go back and try again.
        </p>

        <div class="mt-8">
          <a
            href="/"
            class="inline-flex items-center justify-center rounded-md bg-slate-900 px-4 py-2 text-sm font-medium text-white shadow-sm transition-all hover:-translate-y-0.5 hover:bg-slate-700 hover:shadow-md"
          >
            Back Home
          </a>
        </div>
      </section>
    </main>
  </body>
</html>
