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

interface Props {
  locale: Locale;
  title: string;
}

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

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