diff options
Diffstat (limited to 'website/src/layouts/Page.astro')
| -rw-r--r-- | website/src/layouts/Page.astro | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/website/src/layouts/Page.astro b/website/src/layouts/Page.astro index 4e5f3bb..d41e58c 100644 --- a/website/src/layouts/Page.astro +++ b/website/src/layouts/Page.astro @@ -1,5 +1,6 @@ --- import BaseHead from "../components/BaseHead.astro"; +import Navbar from "../components/Navbar.astro"; const { title, description } = Astro.props; --- @@ -11,7 +12,10 @@ const { title, description } = Astro.props; </head> <body> - <slot /> + <Navbar /> + <main> + <slot /> + </main> </body> </html> |
