Dominik Milacher 0dc24c4db7
Some checks failed
Build and deploy updated apps / Build & deploy (push) Failing after 50s
Extend ux layer and overhaul panoramablick-saalbach.at
2025-11-21 21:17:52 +01:00

36 lines
818 B
Vue

<script setup lang="ts"></script>
<template>
<XScaffoldHeaderHeroMainFooter>
<template #header>
<header class="w-full h-full">
<slot name="header" />
</header>
</template>
<template #hero v-if="$slots.hero">
<section class="w-full h-full">
<slot name="hero" />
</section>
</template>
<template #hero-background v-if="$slots['hero-background']">
<div class="w-full h-full">
<slot name="hero-background" />
</div>
</template>
<template #main>
<main class="w-full h-full" data-vaul-drawer-wrapper>
<slot name="main" />
</main>
</template>
<template #footer>
<footer class="w-full">
<slot name="footer" />
</footer>
</template>
</XScaffoldHeaderHeroMainFooter>
</template>