summaryrefslogtreecommitdiff
path: root/website/src/pages/error.astro
blob: fc84122742d59fa689ed6c930bc9665d8158ef73 (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">
  <main>
    <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>
  </main>
</Page>