blob: 2cafa0cb72d27db64e1d58d95433ce70a9077f6e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
---
import Layout from '../layouts/Layout.astro';
const { title, description } = Astro.props;
---
<Layout title={title} description={description}>
<div class="container">
<slot />
</div>
</Layout>
|