2023-12-09 16:32:22 +00:00
|
|
|
---
|
|
|
|
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>
|
2023-12-09 22:47:46 +00:00
|
|
|
<h1 class="text-3xl font-extrabold">{frontmatter.title}</h1>
|
2023-12-09 16:32:22 +00:00
|
|
|
<p class="italic mb-4">{frontmatter.description}</p>
|
|
|
|
<div class="blog">
|
|
|
|
<slot />
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
</main>
|
|
|
|
</SectionContainer>
|