summaryrefslogtreecommitdiffstats
path: root/src/pages/*.tsx
blob: a7021c6860bd96de536921b77402532b5907b3be (plain) (blame)
1
2
3
4
5
6
7
8
export default function NotFound() {
  return (
    <section>
      <h1>404: Not Found</h1>
      <p>It's gone 😞</p>
    </section>
  );
}