aboutsummaryrefslogtreecommitdiff
path: root/src/layouts/Page.astro
blob: c9066beaff4fa972fabfed19e938af4ed45c759c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
---
import Layout from '../layouts/Layout.astro';
const { frontmatter } = Astro.props;
---

<Layout title={frontmatter.title} description={frontmatter.description}>
    <div class="container">
        <slot />
    </div>
</Layout>