Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/pages/404.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Container, H1, H2, Body, Button, Flex } from '@components/primitives';
---

<Layout title="404 - Page Not Found" description="The page you are looking for could not be found.">
<Container>
<Container class="not-found">
<div>
<H1>404</H1>
<H2>Page Not Found</H2>
Expand All @@ -25,3 +25,9 @@ import { Container, H1, H2, Body, Button, Flex } from '@components/primitives';
</div>
</Container>
</Layout>

<style>
.not-found {
margin-block-start: var(--space-24);
}
</style>
Loading