···11+import { sans } from "./fonts";
22+import Link from "./Link";
33+14export default function NotFound() {
25 return (
33- <>
44- <h1>Not found.</h1>
55- <p>
66- If you're looking for translated posts, they're not on the site anymore but <a href="https://github.com/gaearon/overreacted.io/tree/archive/src/pages">you can find an archive of them here.</a>
77- </p>
88- </>
99- )
1010-}66+ <article className="markdown">
77+ <h1
88+ className={[
99+ sans.className,
1010+ "text-[40px] font-black leading-[44px] text-[--title]",
1111+ ].join(" ")}
1212+ >
1313+ Not found
1414+ </h1>
1515+ <div className="markdown mt-10">
1616+ <p>This page doesn't exist (yet?)</p>
1717+ <p>
1818+ I recently rewrote the site so maybe something broke. Please{" "}
1919+ <Link href="https://github.com/gaearon/overreacted.io/issues/796">
2020+ complain here.
2121+ </Link>
2222+ </p>
2323+ <p>
2424+ If you're looking for translated posts, they're not on the site
2525+ anymore but you can find{" "}
2626+ <Link href="https://github.com/gaearon/overreacted.io/tree/archive/src/pages">
2727+ an archive of them here.
2828+ </Link>
2929+ </p>
3030+ <p>Hope you'll find what you're looking for.</p>
3131+ </div>
3232+ </article>
3333+ );
3434+}