initial commit

This commit is contained in:
2026-06-23 13:28:38 +07:00
commit 966ed115b2
590 changed files with 111412 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
<script setup>
const props = defineProps({
errorCode: {
type: String,
required: false,
},
errorTitle: {
type: String,
required: false,
},
errorDescription: {
type: String,
required: false,
},
})
</script>
<template>
<div class="text-center">
<!-- 👉 Title and subtitle -->
<h1
v-if="props.errorCode"
class="text-h1 font-weight-medium"
>
{{ props.errorCode }}
</h1>
<h4
v-if="props.errorTitle"
class="text-h4 font-weight-medium mb-3"
>
{{ props.errorTitle }}
</h4>
<p v-if="props.errorDescription">
{{ props.errorDescription }}
</p>
</div>
</template>