sidebar + basic layout

This commit is contained in:
2025-07-11 01:44:13 +02:00
parent eaa6b971bf
commit 342b5aa554
65 changed files with 1498 additions and 56 deletions

View File

@@ -0,0 +1,16 @@
<script setup lang="ts">
import type { HTMLAttributes } from 'vue'
import { cn } from '@/lib/utils'
const props = defineProps<{ class?: HTMLAttributes['class'] }>()
</script>
<template>
<div
data-slot="sheet-footer"
:class="cn('mt-auto flex flex-col gap-2 p-4', props.class)
"
>
<slot />
</div>
</template>