Update various configuration files, components, and assets; enhance notification system and API endpoints; improve documentation and styles across the application.

This commit is contained in:
Haqeem Solehan
2025-10-16 16:05:39 +08:00
commit b124ff8092
336 changed files with 94392 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<script setup></script>
<template>
<div>
<div
class="w-full h-14 z-20 bg-white dark:bg-slate-800 fixed top-0 right-0 px-5 py-3 duration-300 shadow-md shadow-slate-200 dark:shadow-slate-900"
>
<div class="flex justify-between">
<div>
<h1 class="text-2xl font-semibold text-gray-800 dark:text-white">
<Icon
name="material-symbols:chevron-left-rounded"
class="inline-block w-6 h-6 mr-2"
/>
</h1>
</div>
</div>
</div>
</div>
</template>