docs: improve 404 page

This commit is contained in:
Hans Pagel 2021-02-03 15:16:43 +01:00
parent 17d5d7ce1b
commit 4896358e29

View File

@ -1,17 +1,24 @@
<template>
<div class="error-page">
Oh no, page not found.
<g-link
to="/"
>
Back
</g-link>
<div class="error-page__content">
Oh no, we cant find this page.
<g-link
to="/"
>
Go back
</g-link>
</div>
</div>
</template>
<style lang="scss">
.error-page {
margin: 5rem 1rem;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
// margin: 5rem 1rem;
text-align: center;
color: rgba($colorWhite, 0.4);