From 2bf64117190300caac82594cb7818dbc7f67af67 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Fri, 12 Jan 2024 13:50:20 +0000 Subject: Moves Navbar/Footer to sub-layouts --- src/layouts/Page.astro | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/layouts/Page.astro') diff --git a/src/layouts/Page.astro b/src/layouts/Page.astro index bc7a095..8416ab3 100644 --- a/src/layouts/Page.astro +++ b/src/layouts/Page.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; --- +
+