Intégration fonctionnalites V1

This commit is contained in:
bastien
2026-07-04 22:30:18 +02:00
parent 55a558b536
commit 10ee859602
54 changed files with 4802 additions and 1018 deletions
@@ -0,0 +1,18 @@
<script setup>
defineProps({
description: {
type: String,
default: '',
},
});
</script>
<template>
<div class="mb-6 flex flex-col gap-4 sm:flex-row sm:items-center sm:justify-between">
<p v-if="description" class="text-sm text-slate-500">{{ description }}</p>
<div v-else class="flex-1" />
<div class="flex shrink-0 items-center gap-3">
<slot />
</div>
</div>
</template>