BTG-Intranet-Linkumwandler/src/pages/ErrorNotFound.vue

30 lines
527 B
Vue
Raw Normal View History

2024-06-26 15:53:49 +00: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>
<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 setup>
defineOptions({
name: 'ErrorNotFound'
});
</script>