Initial codebase commit

This commit is contained in:
2025-10-31 04:44:30 +05:00
commit 73a3be7539
69 changed files with 3812 additions and 0 deletions

20
app/layouts/default.vue Normal file
View File

@ -0,0 +1,20 @@
<template>
<div class="flex">
<div class="w-full">
<header v-if="slots.header">
<slot name="header" />
</header>
<main class="h-screen">
<slot />
</main>
</div>
<aside v-if="slots.sidebar" class="w-full">
<slot name="sidebar" />
</aside>
</div>
</template>
<script setup>
import { useSlots } from 'vue'
const slots = useSlots()
</script>