All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 9s
11 lines
311 B
Plaintext
11 lines
311 B
Plaintext
---
|
|
import MainLayout from './MainLayout.astro';
|
|
import '../styles/global.css';
|
|
const { frontmatter } = Astro.props;
|
|
---
|
|
<MainLayout title={frontmatter.title}>
|
|
<article class="prose prose-slate mx-auto ">
|
|
<h1 class="text-3xl font-bold mb-8">{frontmatter.title}</h1>
|
|
<slot />
|
|
</article>
|
|
</MainLayout> |