my blog https://overreacted.io
1import { sans } from "./fonts";
2import Link from "./Link";
3import "./[slug]/markdown.css";
4
5export default function NotFound() {
6 return (
7 <article className="markdown">
8 <h1
9 className={[
10 sans.className,
11 "text-[40px] font-black leading-[44px] text-[--title]",
12 ].join(" ")}
13 >
14 Not found
15 </h1>
16 <div className="markdown mt-10">
17 <p>This page doesn't exist (yet?)</p>
18 <p>
19 I recently rewrote the site so maybe something broke. Please{" "}
20 <Link href="https://github.com/gaearon/overreacted.io/issues/796">
21 complain here.
22 </Link>
23 </p>
24 <p>
25 If you're looking for translated posts, they're not on the site
26 anymore but you can find{" "}
27 <Link href="https://github.com/gaearon/overreacted.io/tree/archive/src/pages">
28 an archive of them here.
29 </Link>
30 </p>
31 <p>Hope you'll find what you're looking for.</p>
32 </div>
33 </article>
34 );
35}