summaryrefslogtreecommitdiff
path: root/website/src/pages/error.astro
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2024-06-17 22:34:43 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2024-06-17 22:34:43 +0100
commitb66fd31bd77b8eeca1ef6009136b563b20b85b2b (patch)
treef3d2aadf5316f29dbf5d9547847bc9b71d794784 /website/src/pages/error.astro
parentea8f27e397596bc10b9eb65a6ee8f1cc5a8d04ac (diff)
Replaces duplicate main tag with section in error page
Diffstat (limited to 'website/src/pages/error.astro')
-rw-r--r--website/src/pages/error.astro4
1 files changed, 2 insertions, 2 deletions
diff --git a/website/src/pages/error.astro b/website/src/pages/error.astro
index fc84122..dd7188a 100644
--- a/website/src/pages/error.astro
+++ b/website/src/pages/error.astro
@@ -3,12 +3,12 @@ import Page from '../layouts/Page.astro';
---
<Page title="Got lost?" description="Error page for Joe's personal website">
- <main>
+ <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>
- </main>
+ </section>
</Page>