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

interface Props {
  noBreadcrumbs?: boolean;
  title: string;
}

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

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