aboutsummaryrefslogtreecommitdiff
path: root/src/pages/ErrorNotFound.vue
diff options
context:
space:
mode:
authorMark Powers <mark@marks.kitchen>2024-07-14 16:17:59 -0500
committerMark Powers <mark@marks.kitchen>2024-07-14 16:17:59 -0500
commit0e742a485f3fa7d35d26b05980a293b5760e8418 (patch)
tree97510b5e1979f7e02dbcb17ccbc699c4f97e63f2 /src/pages/ErrorNotFound.vue
Initial commitHEADmaster
Diffstat (limited to 'src/pages/ErrorNotFound.vue')
-rw-r--r--src/pages/ErrorNotFound.vue31
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>