Dominik Milacher 24cd95b1af
Some checks failed
Build and deploy updated apps / Build & deploy (push) Has been cancelled
Enable cookie banner, revert to default fonts
2025-10-14 21:32:23 +02:00

16 lines
280 B
Vue

<template>
<UApp :toaster="{ position: 'top-center' }">
<div class="flex flex-col min-h-dvh bg-neutral-50">
<AppHeader/>
<main class="flex-1">
<slot/>
</main>
<AppFooter/>
</div>
</UApp>
</template>
<script setup lang="ts">
</script>