forked from primefaces/primevue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.vue
16 lines (16 loc) · 847 Bytes
/
error.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<template>
<div>
<NuxtLayout name="default">
<div class="flex card flex-column align-items-center gap-5 sm:p-8">
<div class="flex flex-column sm:flex-row align-items-center justify-content-center gap-3 text-primary">
<span class="font-bold" :style="{ fontSize: '144px' }"> 4 </span>
<div class="flex align-items-center justify-content-center bg-primary border-circle w-8rem h-8rem">
<i class="pi pi-prime text-7xl"></i>
</div>
<span class="font-bold" :style="{ fontSize: '144px' }"> 4 </span>
</div>
<div class="font-bold text-900 text-center text-6xl border-top-1 surface-border pt-5">PAGE NOT FOUND</div>
</div>
</NuxtLayout>
</div>
</template>