My personal website.
1---
2import Base from "../components/Base.astro";
3import "../styles/main.css";
4import "../styles/splashscreen.css";
5---
6
7<Base
8 title="404"
9 graph={{
10 description: "Page not found.",
11 }}
12>
13 <div class="bwcontainer">
14 <main class="bwbox center">
15 <h1>ERROR_404</h1>
16 <p>This page doesn't exist.</p>
17 <p><a href="/home">Return home</a></p>
18 </main>
19 </div>
20</Base>