Initial commit.

This commit is contained in:
2025-12-10 21:09:25 +00:00
commit 9d4de0e6b6
73 changed files with 15219 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<script setup>
defineProps({
message: {
type: String,
default: 'An error occurred'
},
icon: {
type: String,
default: 'fas fa-exclamation-triangle'
}
})
</script>
<template>
<div class="flex items-center justify-center min-h-[60vh]">
<div class="text-center">
<i :class="icon" class="text-4xl text-red-500 mb-4"></i>
<p class="text-gray-600 dark:text-gray-400">{{ message }}</p>
<slot name="actions"></slot>
</div>
</div>
</template>