summaryrefslogtreecommitdiff
path: root/src/layouts/Article.astro
blob: babe66f937e288dab1950dea1086dfb97933e155 (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 />
  <article id="main">
    <slot />
  </article>
  <Footer />
</Layout>