| 1234567891011121314151617181920212223242526272829 |
- <template>
- <div
- class="fullscreen bg-blue text-white text-center q-pa-md flex flex-center"
- >
- <div>
- <div style="font-size: 30vh">{{ $t("404") }}</div>
- <div class="text-h2" style="opacity: 0.4">
- {{ $t("pageNotFound") }}
- </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>
|