fantasia-archive/src/pages/ErrorNotFound.vue

35 lines
609 B
Vue
Raw Normal View History

2021-07-10 04:38:42 +12:00
<template>
<div class="fullscreen bg-blue text-white text-center q-pa-md flex flex-center">
<div>
<div style="font-size: 30vh">
404
</div>
2023-08-27 09:01:46 +12:00
<div
class="text-h2"
style="opacity:.4"
>
2021-07-10 04:38:42 +12:00
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 lang="ts">
import { defineComponent } from 'vue'
export default defineComponent({
name: 'ErrorNotFound'
2021-07-10 04:38:42 +12:00
})
</script>