Initial set of pages.

This commit is contained in:
James Cole
2022-02-27 10:14:08 +01:00
parent e60320a9be
commit 3a49af94d0
60 changed files with 11404 additions and 0 deletions

View File

@@ -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: 'Error404'
})
</script>