Capital/src/layouts/PageLayout.astro
2024-01-22 11:43:07 +08:00

12 lines
206 B
Plaintext

---
import RootLayout from "./RootLayout.astro";
const { title } = Astro.props;
---
<RootLayout title={title}>
<main class="container mx-auto h-fullpage mt-header">
<slot />
</main>
</RootLayout>