error.vue 932 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <div class="flex flex-col w-screen h-screen bg-background-100 text-foreground">
  3. <main class="flex-auto show flex justify-center items-center">
  4. <div class="w-[413px] h-full flex flex-col gap-3 items-center justify-center">
  5. <p class="font-bold text-4xl">
  6. Возникла ошибка
  7. </p>
  8. <p class="text-xl text-center">
  9. Не переживайте, мы уже знаем<br>о проблеме и решаем её 😊
  10. </p>
  11. <button
  12. class="mt-3 border-[1px] text-md px-10 border-primary hover:bg-primary hover:text-black rounded-xl flex gap-3 justify-center items-center duration-150"
  13. @click="router.back()"
  14. >
  15. Вернуться обратно
  16. </button>
  17. </div>
  18. </main>
  19. </div>
  20. </template>
  21. <script setup lang="ts">
  22. const router = useRouter()
  23. definePageMeta({
  24. layout: 'none',
  25. })
  26. </script>