kjelsrud.dev/src/layouts/Layout.astro
Sindre Kjelsrud 0ecaf0eb9e 🔥 remove imports
2023-12-10 21:14:28 +01:00

16 lines
No EOL
412 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-extrabold">{frontmatter.title}</h1>
<p class="italic mb-4">{frontmatter.description}</p>
<div class="blog">
<slot />
</div>
</article>
</main>
</SectionContainer>