firq-dev-website/src/pages/404.astro

71 lines
1.6 KiB
Text
Raw Normal View History

---
import { Image } from 'astro:assets'
2024-10-26 22:41:24 +02:00
import Layout from '@layouts/Layout.astro'
import sadshishou from '@assets/shishousad.webp'
import SmallTitle from '@components/titles/smallTitle.astro'
const description = "Error. This shouldn't happen :/"
---
<Layout
2025-04-12 19:05:52 +02:00
title="404 - firq.dev"
currentpage="404"
descriptionOverride={description}
>
2024-07-19 22:52:15 +02:00
<SmallTitle maintext='Error' subtext='FirqhundredandFirq - Not Found' fadeout={true}/>
<div>
<Image src={sadshishou} alt="Sad Shishou" />
<h2>Well ... you were not supposed to end up here.</h2>
2023-03-16 23:47:40 +01:00
<a href="/" aria-label="Home" rel="noopener noreferrer">
2024-01-20 16:21:51 +01:00
&lt;&lt; Go back home
2023-03-16 23:47:40 +01:00
</a>
</div>
</Layout>
<style>
div {
2024-07-19 22:52:15 +02:00
padding: 0px 2rem;
display: flex;
2024-07-19 22:52:15 +02:00
flex-wrap: nowrap;
flex-direction: column;
align-items: center;
}
h2 {
2024-10-22 22:54:02 +02:00
font-family: 'Work Sans Variable', sans-serif;
2024-07-19 22:52:15 +02:00
font-weight: 500;
2024-10-24 18:52:33 +02:00
color: var(--c-primary-text);
2024-07-19 22:52:15 +02:00
font-size: 1.25rem;
margin-top: 1rem;
max-width: max-content;
2024-07-19 22:52:15 +02:00
text-align: center;
font-style: italic;
}
2024-07-19 22:52:15 +02:00
a {
text-align: center;
2024-07-19 22:52:15 +02:00
width: fit-content;
2024-10-22 22:54:02 +02:00
font-weight: 500;
font-family: 'Work Sans Variable', sans-serif;
2024-10-24 18:52:33 +02:00
color: var(--c-primary-text);
2024-07-19 22:52:15 +02:00
margin: 1rem 0px 0px;
padding: 0.5rem 0.75rem;
text-decoration: none;
2024-10-24 18:52:33 +02:00
background-color: var(--c-primary-background);
2024-07-19 22:52:15 +02:00
border-radius: 10px;
border-style: solid;
border-width: 2px;
2024-10-24 18:52:33 +02:00
border-color: var(--c-primary-background);
2024-07-19 22:52:15 +02:00
text-transform: capitalize;
}
2024-07-19 22:52:15 +02:00
a:hover {
2024-10-24 18:52:33 +02:00
border-color: var(--c-accent-1);
}
2023-05-09 21:23:41 +02:00
img {
2024-07-19 22:52:15 +02:00
width: 200px;
height: auto;
border-radius: 10%;
2023-05-09 21:23:41 +02:00
}
</style>