My personal website.
1---
2import Base from "/components/Base.astro";
3import "/styles/main.css";
4import "/styles/splashscreen.css";
5---
6
7<Base title="404">
8 <div class="bwcontainer">
9 <main class="bwbox center">
10 <h1>ERROR_404</h1>
11 <p>This page doesn't exist.</p>
12 <p><a href="/home">Return home</a></p>
13 </main>
14 </div>
15</Base>