Dominik Milacher 1b0ff8bec2
Some checks failed
Build and deploy updated apps / Build & deploy (push) Failing after 2m5s
Unify style
2025-06-16 10:01:30 +02:00

16 lines
284 B
Vue

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