mirror of
https://github.com/liyunze-coding/RythonDev.git
synced 2026-09-22 15:53:57 +00:00
22 lines
390 B
Text
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>
|