diff options
Diffstat (limited to 'src/layouts')
-rw-r--r-- | src/layouts/BaseLayout.astro | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index 216287e..ed3baeb 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -7,16 +7,17 @@ import "../scss/global.scss"; type Props = { readonly description: string; - readonly title: string; readonly lang: string; + readonly preview: string; readonly schema: WithContext<Thing>; + readonly title: string; }; -const { title, description, lang, schema } = Astro.props; +const { description, lang, preview, schema, title } = Astro.props; --- <html lang={lang}> - <Head title={title} description={description} schema={schema} /> + <Head title={title} description={description} preview={preview} schema={schema} /> <body> <main> |