aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/404.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/404.vue')
-rw-r--r--src/pages/404.vue16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/pages/404.vue b/src/pages/404.vue
new file mode 100644
index 0000000..6484cb2
--- /dev/null
+++ b/src/pages/404.vue
@@ -0,0 +1,16 @@
+<template>
+ <div class="fixed-center text-center">
+ <p>
+ <img
+ src="~assets/sad.svg"
+ style="width:30vw;max-width:150px;"
+ >
+ </p>
+ <p class="text-faded">Sorry, nothing here...<strong>(404)</strong></p>
+ <q-btn
+ color="secondary"
+ style="width:200px;"
+ @click="$router.push('/')"
+ >Go back</q-btn>
+ </div>
+</template>