summaryrefslogtreecommitdiff
path: root/src/layouts/Article.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/layouts/Article.astro')
-rw-r--r--src/layouts/Article.astro4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/layouts/Article.astro b/src/layouts/Article.astro
index 253479b..babe66f 100644
--- a/src/layouts/Article.astro
+++ b/src/layouts/Article.astro
@@ -1,4 +1,6 @@
---
+import Footer from '$components/Footer.astro';
+import Navbar from '$components/Navbar/Navbar.astro';
import Layout from './Layout.astro';
interface Props {
@@ -9,7 +11,9 @@ const { title } = Astro.props;
---
<Layout title={title}>
+ <Navbar />
<article id="main">
<slot />
</article>
+ <Footer />
</Layout>