[Archived] Archived WIP of vielle.dev
1---
2import Base from "@/Base.astro";
3---
4
5<Base title="Page Not Found">
6 <style slot="head">
7 button {
8 background: none;
9 color: LinkText;
10 border: none;
11 padding: 0;
12 font: inherit;
13 cursor: pointer;
14 text-decoration: underline;
15 }
16 </style>
17
18 <h1>404 - Page Not Found</h1>
19 <p>Sorry, the page you are looking for does not exist.</p>
20 <button onclick="history.back()">Go Back</button>
21 <a href="/">Go to the homepage</a>
22</Base>