17 lines
316 B
Text
17 lines
316 B
Text
|
---
|
||
|
import Layout from '../layouts/Layout.astro'
|
||
|
import BaseSection from '../layouts/baseSection.astro'
|
||
|
|
||
|
const description = "Error. This shouldn't happen :/"
|
||
|
---
|
||
|
|
||
|
<Layout
|
||
|
title="404 - Firq FGO Site"
|
||
|
currentpage="404"
|
||
|
descriptionOverride={description}
|
||
|
>
|
||
|
<BaseSection title=":(" />
|
||
|
</Layout>
|
||
|
|
||
|
<style></style>
|