Files
leim-tools/pages/about.vue
2025-05-07 13:15:01 +02:00

26 lines
602 B
Vue

<script lang="ts" setup>
const { locale } = useI18n()
const { data: page, refresh } = await useAsyncData(locale, () => {
return queryCollection("sections").path(`/sections/${locale.value}/legal`).first()
})
watch(locale, () => refresh())
</script>
<template>
<main class="py-8 px-5 md:px-8 overflow-y-auto">
<Head>
<Title>{{ $t("pages.about.title") }}</Title>
</Head>
<Spacing size="lg">
<Heading level="h1">
{{ $t("pages.about.title") }}
</Heading>
<ContentRenderer v-if="page" :value="page" class="content" />
</Spacing>
</main>
</template>