summaryrefslogtreecommitdiff
path: root/website/src/pages/error.astro
blob: dd7188af0fd403e99d11c3289804b40bddf8981e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
import Page from '../layouts/Page.astro';
---

<Page title="Got lost?" description="Error page for Joe's personal website">
  <section>
    <h1>Got lost?</h1>

    <p>
      If you’re on this page, something’s probably gone wrong. Try going to
      my <a href="/">homepage</a> instead.
    </p>
  </section>
</Page>