Update to PrimeVue v4

This commit is contained in:
Cagatay Civici
2024-07-25 16:41:34 +03:00
parent ef6f80dfb1
commit a7bec8d7a5
276 changed files with 4676 additions and 805020 deletions

View File

@@ -1,18 +1,20 @@
<script setup>
import AppConfig from '@/layout/AppConfig.vue';
</script>
<script setup></script>
<template>
<div class="surface-ground flex align-items-center justify-content-center min-h-screen min-w-screen overflow-hidden">
<div
class="surface-ground flex align-items-center justify-content-center min-h-screen min-w-screen overflow-hidden">
<div class="flex flex-column align-items-center justify-content-center">
<img src="/demo/images/notfound/logo-blue.svg" alt="Sakai logo" class="mb-5 w-6rem flex-shrink-0" />
<div style="border-radius: 56px; padding: 0.3rem; background: linear-gradient(180deg, rgba(33, 150, 243, 0.4) 10%, rgba(33, 150, 243, 0) 30%)">
<div class="w-full surface-card py-8 px-5 sm:px-8 flex flex-column align-items-center" style="border-radius: 53px">
<div
style="border-radius: 56px; padding: 0.3rem; background: linear-gradient(180deg, rgba(33, 150, 243, 0.4) 10%, rgba(33, 150, 243, 0) 30%)">
<div class="w-full surface-card py-8 px-5 sm:px-8 flex flex-column align-items-center"
style="border-radius: 53px">
<span class="text-blue-500 font-bold text-3xl">404</span>
<h1 class="text-900 font-bold text-3xl lg:text-5xl mb-2">Not Found</h1>
<div class="text-600 mb-5">Requested resource is not available.</div>
<router-link to="/" class="w-full flex align-items-center py-5 border-300 border-bottom-1">
<span class="flex justify-content-center align-items-center bg-cyan-400 border-round" style="height: 3.5rem; width: 3.5rem">
<span class="flex justify-content-center align-items-center bg-cyan-400 border-round"
style="height: 3.5rem; width: 3.5rem">
<i class="text-50 pi pi-fw pi-table text-2xl"></i>
</span>
<span class="ml-4 flex flex-column">
@@ -21,7 +23,8 @@ import AppConfig from '@/layout/AppConfig.vue';
</span>
</router-link>
<router-link to="/" class="w-full flex align-items-center py-5 border-300 border-bottom-1">
<span class="flex justify-content-center align-items-center bg-orange-400 border-round" style="height: 3.5rem; width: 3.5rem">
<span class="flex justify-content-center align-items-center bg-orange-400 border-round"
style="height: 3.5rem; width: 3.5rem">
<i class="pi pi-fw pi-question-circle text-50 text-2xl"></i>
</span>
<span class="ml-4 flex flex-column">
@@ -30,7 +33,8 @@ import AppConfig from '@/layout/AppConfig.vue';
</span>
</router-link>
<router-link to="/" class="w-full flex align-items-center mb-5 py-5 border-300 border-bottom-1">
<span class="flex justify-content-center align-items-center bg-indigo-400 border-round" style="height: 3.5rem; width: 3.5rem">
<span class="flex justify-content-center align-items-center bg-indigo-400 border-round"
style="height: 3.5rem; width: 3.5rem">
<i class="pi pi-fw pi-unlock text-50 text-2xl"></i>
</span>
<span class="ml-4 flex flex-column">
@@ -42,5 +46,4 @@ import AppConfig from '@/layout/AppConfig.vue';
</div>
</div>
</div>
<AppConfig simple />
</template>