diff options
Diffstat (limited to 'src/pages/ErrorNotFound.vue')
-rw-r--r-- | src/pages/ErrorNotFound.vue | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/pages/ErrorNotFound.vue b/src/pages/ErrorNotFound.vue new file mode 100644 index 0000000..c1c178b --- /dev/null +++ b/src/pages/ErrorNotFound.vue @@ -0,0 +1,31 @@ +<template> + <div class="fullscreen bg-blue text-white text-center q-pa-md flex flex-center"> + <div> + <div style="font-size: 30vh"> + 404 + </div> + + <div class="text-h2" style="opacity:.4"> + Oops. Nothing here... + </div> + + <q-btn + class="q-mt-xl" + color="white" + text-color="blue" + unelevated + to="/" + label="Go Home" + no-caps + /> + </div> + </div> +</template> + +<script> +import { defineComponent } from 'vue' + +export default defineComponent({ + name: 'ErrorNotFound' +}) +</script> |