2025-09-18 22:20:01 +02:00
|
|
|
<template>
|
2025-09-25 10:12:10 +02:00
|
|
|
<div class="app-layout">
|
2025-09-18 22:20:01 +02:00
|
|
|
<AppNavbar />
|
2025-09-25 10:12:10 +02:00
|
|
|
<main>
|
2025-09-18 22:20:01 +02:00
|
|
|
<slot />
|
|
|
|
|
</main>
|
|
|
|
|
<AppFooter />
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
// Layout components are auto-imported by Nuxt
|
2025-09-25 10:12:10 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
.app-layout {
|
|
|
|
|
/* Allow background to be transparent for safe area extension */
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
main {
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
</style>
|