kjelsrud.dev/src/layouts/Layout.astro
SindreKjelsrud 0c63d914ec
All checks were successful
Deploy website / build-and-deploy (push) Successful in 5m15s
💄 Tune down boldness of pagetitles
Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
2025-05-29 19:31:16 +02:00

16 lines
No EOL
411 B
Text

---
import SectionContainer from '../components/SectionContainer.astro';
const {frontmatter} = Astro.props;
---
<SectionContainer>
<main class="flex flex-col flex-1 mb-auto break-words mt-4">
<article>
<h1 class="text-3xl font-bold">[ {frontmatter.title} ]</h1>
<p class="italic mb-4">{frontmatter.description}</p>
<div class="blog">
<slot />
</div>
</article>
</main>
</SectionContainer>