This commit is contained in:
2026-07-18 18:27:37 +02:00
parent 2228fea027
commit 795512b112
2 changed files with 16 additions and 2 deletions

View File

@@ -124,9 +124,16 @@ body {
padding: 2rem 1.5rem 4rem;
}
h1 {
margin-top: 60px;
}
h2, h3, h4, h5, h6 {
margin-top: 1rem;
}
/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
margin-top: 60px;
margin-bottom: 0.6em;
line-height: 1.3;
color: var(--text-heading);
@@ -208,7 +215,7 @@ em {
/* ── Lists ────────────────────────────────────────────────── */
ul, ol {
margin: 0 0 1.25em;
margin: 0;
padding-left: 1.5rem;
}

View File

@@ -7,6 +7,13 @@ const { data: page } = await useAsyncData('page-' + route.path, () => {
if (!page.value) {
useHead({ title: 'Page not found', meta: [{ name: 'robots', content: 'noindex' }] })
} else {
useHead({
title: page.value.title,
meta: [
{ name: 'robots', content: 'index, follow' }
]
})
}
</script>