aboutsummaryrefslogtreecommitdiff
path: root/src/layouts/PageLayout.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/layouts/PageLayout.astro')
-rw-r--r--src/layouts/PageLayout.astro4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/layouts/PageLayout.astro b/src/layouts/PageLayout.astro
index 3730334..eff37fb 100644
--- a/src/layouts/PageLayout.astro
+++ b/src/layouts/PageLayout.astro
@@ -1,7 +1,9 @@
---
import BaseLayout from "./BaseLayout.astro";
+
+const { title, description } = Astro.props;
---
-<BaseLayout>
+<BaseLayout title={title} description={description}>
<slot />
</BaseLayout>