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
@@ -0,0 +1,20 @@
<script setup>
const themes = [
{
name: 'system',
icon: 'tabler-device-laptop',
},
{
name: 'light',
icon: 'tabler-sun-high',
},
{
name: 'dark',
icon: 'tabler-moon',
},
]
</script>
<template>
<ThemeSwitcher :themes="themes" />
</template>