diff --git a/www/src/layouts/Layout.astro b/www/src/layouts/Layout.astro index 8245b1b..4f59fe1 100644 --- a/www/src/layouts/Layout.astro +++ b/www/src/layouts/Layout.astro @@ -3,19 +3,24 @@ import '../styles/global.css'; interface Props { title: string; + description?: string; showHeader?: boolean; isHome?: boolean; urls?: string[]; } -const { title, showHeader = true, isHome = false, urls = [] } = Astro.props; +const { title, description = 'personal website of lewis m.w.', showHeader = true, isHome = false, urls = [] } = Astro.props; --- - + {title} + + + + {urls.length > 0 && }