diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index ada9270..474135f 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,9 +1,10 @@ --- export interface Props { - title: string + title?: string } const { title } = Astro.props +const permaTitle = 'Hacking in Parallel 2022 //// Berlin' --- @@ -12,10 +13,14 @@ const { title } = Astro.props -