Added container to about page

This commit is contained in:
Alexis
2025-05-07 14:34:46 +02:00
parent 245fb421b3
commit f132e6d1e0
3 changed files with 9 additions and 8 deletions

View File

@@ -14,12 +14,14 @@ watch(locale, () => refresh())
<Title>{{ $t("pages.about.title") }}</Title>
</Head>
<Spacing size="lg">
<Heading level="h1">
{{ $t("pages.about.title") }}
</Heading>
<div class="container">
<Spacing size="lg">
<Heading level="h1">
{{ $t("pages.about.title") }}
</Heading>
<ContentRenderer v-if="page" :value="page" class="content" />
</Spacing>
<ContentRenderer v-if="page" :value="page" class="content" />
</Spacing>
</div>
</main>
</template>