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

10 lines
176 B
Plaintext

---
import BaseLayout from "./BaseLayout.astro";
const { title, description } = Astro.props;
---
<BaseLayout title={title} description={description}>
<slot />
</BaseLayout>