diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-12 20:47:32 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-12 20:47:32 +0100 |
| commit | 8a5b11d8322b806ce277c399e51b7f40efcb2556 (patch) | |
| tree | 447694202ee9d70cab7e3ecb4ff49e9d6f7ebee7 /src/layouts | |
| parent | de86f122320be7a41cd94476c8a9424c7c766b19 (diff) | |
Text color and background colour is controlled by CSS vars
Diffstat (limited to 'src/layouts')
| -rw-r--r-- | src/layouts/Layout.astro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index ca567f6..f63b0ad 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,5 +1,6 @@ --- import Footer from '../components/Footer.astro'; +import Navbar from '../components/Navbar.astro'; import translate from '../i18n/translate'; import site from '../i18n/translations/site'; import type Locale from '../types/Locale'; @@ -26,6 +27,7 @@ const t = translate(locale); <title>{title} | {t(site, { key: 'title' })}</title> </head> <body> + <Navbar locale={locale} /> <slot /> <Footer /> </body> |
