RythonDev/src/layouts/PageLayout.astro
2025-08-10 12:21:29 +10:00

22 lines
390 B
Text

---
interface Props {
title: string;
description: string;
thumbnail?: string;
metaURL?: string;
}
const { title, description, thumbnail, metaURL } = Astro.props;
import Layout from "./Layout.astro";
import NavBar from "@/components/global/NavBar.astro";
---
<Layout
title={title}
description={description}
thumbnail={thumbnail}
metaURL={metaURL}
>
<NavBar />
<slot />
</Layout>