diff options
Diffstat (limited to 'src/layouts/Layout.astro')
| -rw-r--r-- | src/layouts/Layout.astro | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index ebe5917..ee1a56d 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,7 +1,7 @@ --- -import '@fontsource-variable/archivo' import Header from "../partials/Header.astro"; import Footer from "../partials/Footer.astro"; +import { Font } from "astro:assets"; interface Props { title: string; @@ -46,6 +46,8 @@ const { title, description, empty } = Astro.props; <title>{title} - Ariel Costas</title> + <Font cssVariable="--font-archivo" preload /> + <slot name="head-jsonld" /> </head> <body> |
