summaryrefslogtreecommitdiff
path: root/src/views/NotFound.vue
diff options
context:
space:
mode:
authorHelianthella <git@gumi.ca>2020-12-25 22:37:30 -0500
committerHelianthella <git@gumi.ca>2020-12-25 22:37:30 -0500
commit618691cbce7932e1ca4e79873b7b5b3550dc51a9 (patch)
tree16c087d57c9dde169d1266df4319aca934230db9 /src/views/NotFound.vue
parent965059649ff6de8849f5091435befddba18ced93 (diff)
downloadwebsite-618691cbce7932e1ca4e79873b7b5b3550dc51a9.tar.gz
website-618691cbce7932e1ca4e79873b7b5b3550dc51a9.tar.bz2
website-618691cbce7932e1ca4e79873b7b5b3550dc51a9.tar.xz
website-618691cbce7932e1ca4e79873b7b5b3550dc51a9.zip
further improve accessibility
Diffstat (limited to 'src/views/NotFound.vue')
-rw-r--r--src/views/NotFound.vue13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/views/NotFound.vue b/src/views/NotFound.vue
index 35b9753..5dab5d0 100644
--- a/src/views/NotFound.vue
+++ b/src/views/NotFound.vue
@@ -2,5 +2,18 @@
<main>
<h1>Page not found</h1>
<p>This page does not exist or has been removed.</p>
+ <p><router-link :to="{ name: 'home' }">back to home page</router-link></p>
</main>
</template>
+
+<style scoped>
+a {
+ margin-top: 2em;
+ font-size: 1.3em;
+
+ &::before {
+ content: "🠨 ";
+ text-decoration: none;
+ }
+}
+</style>