ErrorNotFound.vue 536 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div
  3. class="fullscreen bg-blue text-white text-center q-pa-md flex flex-center"
  4. >
  5. <div>
  6. <div style="font-size: 30vh">{{ $t("404") }}</div>
  7. <div class="text-h2" style="opacity: 0.4">
  8. {{ $t("pageNotFound") }}
  9. </div>
  10. <q-btn
  11. class="q-mt-xl"
  12. color="white"
  13. text-color="blue"
  14. unelevated
  15. to="/"
  16. label="Go Home"
  17. no-caps
  18. />
  19. </div>
  20. </div>
  21. </template>
  22. <script setup>
  23. defineOptions({
  24. name: "ErrorNotFound",
  25. });
  26. </script>