summaryrefslogtreecommitdiff
path: root/src/layouts/Page.astro
blob: 8416ab3fefaa52a7eec7697bf85a9b8742cc5e29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
import Footer from '$components/Footer.astro';
import Navbar from '$components/Navbar/Navbar.astro';
import Layout from './Layout.astro';

interface Props {
  title: string;
}

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

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