diff --git a/swa/src/layouts/Layout.astro b/swa/src/layouts/BaseLayout.astro similarity index 75% rename from swa/src/layouts/Layout.astro rename to swa/src/layouts/BaseLayout.astro index 39bc6d3..3ac8977 100644 --- a/swa/src/layouts/Layout.astro +++ b/swa/src/layouts/BaseLayout.astro @@ -3,9 +3,11 @@ import "../styles/base.css"; interface Props { title: string; + description?: string; + keywords?: string; } -const { title } = Astro.props; +const { title, description, keywords } = Astro.props; --- @@ -13,8 +15,8 @@ const { title } = Astro.props;