docs: add 404 page

This commit is contained in:
Hans Pagel
2021-01-21 23:41:28 +01:00
parent 223ffaab1e
commit 1a5e0b6a5f
2 changed files with 31 additions and 8 deletions

22
docs/src/pages/404.vue Normal file
View File

@@ -0,0 +1,22 @@
<template>
<div class="error-page">
Oh no, page not found.
<g-link
to="/"
>
Back
</g-link>
</div>
</template>
<style lang="scss">
.error-page {
margin: 5rem 1rem;
text-align: center;
color: rgba($colorWhite, 0.4);
a {
color: $colorWhite;
}
}
</style>