Refactor project structure and update dependencies

This commit is contained in:
2025-05-11 16:17:40 +02:00
parent 81d692a19b
commit 813f7b18d8
73 changed files with 10156 additions and 7756 deletions

View File

@@ -0,0 +1,5 @@
<template>
<div>
<slot />
</div>
</template>

View File

@@ -0,0 +1,17 @@
<template>
<div>
<AppHeader />
<UContainer class="flex justify-start mt-4">
<AppNavigation />
<UContainer
as="main"
class="flex-grow py-4 sm:py-7 flex flex-col"
>
<slot />
</UContainer>
</UContainer>
</div>
</template>
<script setup lang="ts">
</script>