0
mirror of https://github.com/valentineus/popov.link.git synced 2025-06-07 10:33:34 +03:00
popov.link/src/layouts/PageLayout.astro

10 lines
176 B
Plaintext
Raw Normal View History

2024-09-04 21:16:37 +00:00
---
import BaseLayout from "./BaseLayout.astro";
2024-09-11 22:03:55 +00:00
const { title, description } = Astro.props;
2024-09-04 21:16:37 +00:00
---
2024-09-11 22:03:55 +00:00
<BaseLayout title={title} description={description}>
2024-09-04 21:16:37 +00:00
<slot />
</BaseLayout>