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

30 lines
717 B
Vue

<script setup lang="ts">
useSeoLinking()
const { l } = useContentInjected()
useSeoMeta({
title: () => l.value.meta.title,
description: () => l.value.meta.description,
})
</script>
<template>
<XScaffoldGridPage>
<AppSection mode="flat">
<XContainerPair fractions="1/2" break="2xl" :ux="{ left: 'flex items-center' }">
<template #left>
<AppShowcase />
</template>
<template #right>
<AppHighlights />
</template>
</XContainerPair>
</AppSection>
<AppSection mode="card" v-for="(apartment, index) in l.list" :key="index">
<AppApartment :apartment="apartment" :index="index" />
</AppSection>
</XScaffoldGridPage>
</template>