summaryrefslogtreecommitdiff
path: root/src/layouts/Page.astro
blob: bc7a095a139f158e6ae2d30085aa462e3412cb2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
import Layout from './Layout.astro';

interface Props {
  title: string;
}

const { title } = Astro.props;
---

<Layout title={title}>
  <main id="main">
    <slot />
  </main>
</Layout>