mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-13 23:01:19 +00:00
52 lines
1.4 KiB
Vue
52 lines
1.4 KiB
Vue
<!--
|
|
- Error404.vue
|
|
- Copyright (c) 2022 james@firefly-iii.org
|
|
-
|
|
- This file is part of Firefly III (https://github.com/firefly-iii).
|
|
-
|
|
- This program is free software: you can redistribute it and/or modify
|
|
- it under the terms of the GNU Affero General Public License as
|
|
- published by the Free Software Foundation, either version 3 of the
|
|
- License, or (at your option) any later version.
|
|
-
|
|
- This program is distributed in the hope that it will be useful,
|
|
- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
- GNU Affero General Public License for more details.
|
|
-
|
|
- You should have received a copy of the GNU Affero General Public License
|
|
- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
-->
|
|
|
|
<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>
|