diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index 39ba129..355946a 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -19,6 +19,8 @@ interface Props { const { title, description = 'Alex Lebens', ogImage, lang = 'en', structuredData } = Astro.props; +const rybbitSiteId = "YOUR_SITE_ID"; + const global = await directus.request(readSingleton('site_global')); const normalizeTitle = !title ? global.name : `${title} | ${global.name}`; --- @@ -53,6 +55,12 @@ const normalizeTitle = !title ? global.name : `${title} | ${global.name}`; } window.localStorage.setItem('theme', theme); + +