primevue-mirror/error.vue

17 lines
845 B
Vue
Raw Normal View History

2023-03-21 17:25:22 +00:00
<template>
2023-03-21 17:34:11 +00:00
<div>
<NuxtLayout name="default">
2024-05-20 12:12:15 +00:00
<div class="flex card flex-col items-center gap-8 sm:p-20">
<div class="flex flex-col sm:flex-row items-center justify-center gap-4 text-primary">
<span class="font-bold" style="font-size: 144px"> 4 </span>
<div class="flex items-center justify-center bg-primary text-primary-contrast rounded-full w-32 h-32">
<i class="pi pi-prime" style="font-size: 4.5rem"></i>
2023-03-21 17:34:11 +00:00
</div>
2024-05-20 12:12:15 +00:00
<span class="font-bold" style="font-size: 144px"> 4 </span>
2023-03-21 17:25:22 +00:00
</div>
2024-05-21 10:23:45 +00:00
<div class="font-bold text-center text-6xl border-t border-surface-200 dark:border-surface-700 pt-8">PAGE NOT FOUND</div>
2023-03-21 17:25:22 +00:00
</div>
2023-03-21 17:34:11 +00:00
</NuxtLayout>
</div>
2023-03-21 17:25:22 +00:00
</template>