add 404 page

Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
Sindre Kjelsrud 2024-03-13 15:25:16 +01:00
parent 491f89784b
commit 1922985aeb
Signed by untrusted user who does not match committer: sidski
GPG key ID: D2BBDF3EDE6BA9A6

21
src/pages/404.astro Normal file
View file

@ -0,0 +1,21 @@
---
import SectionContainer from '../components/SectionContainer.astro';
import HeaderLink from '../components/HeaderLink.astro';
---
<SectionContainer>
<main class="flex flex-col flex-1 justify-center items-center gap-4">
<h1 class="text-3xl font-bold text-center">ooops! that's a 404 hehe...</h1>
<div class="profile"></div>
</main>
</SectionContainer>
<style>
.profile {
width: 12rem;
height: 18rem;
background: url("https://media1.tenor.com/m/vmSP8owuOYYAAAAd/huh-cat-huh-m4rtin.gif");
background-size: cover;
background-repeat: no-repeat;
border-radius: 5px;
}
</style>