frieren

~ / frieren

a self-hosted git server in one binary — everyone reads, only the owner writes

frieren / web / app / not-found.tsx 454 B · raw

import Link from "next/link";

export default function NotFound() {
  return (
    <div className="mx-auto max-w-xl border border-line bg-panel px-8 py-10 text-center">
      <p className="font-display text-4xl">404</p>
      <p className="mt-3 text-sm text-fog">
        Whatever was here, time has taken it.{" "}
        <Link href="/" className="text-frost hover:underline">
          Back to the archive.
        </Link>
      </p>
    </div>
  );
}