17 lines
442 B
Text
17 lines
442 B
Text
---
|
|
import GuideLayout from "@layouts/GuideLayout.astro";
|
|
import type { ConfigHeading } from "@src/components/navigation/sidebars/types";
|
|
|
|
export interface Props {
|
|
headings: ConfigHeading[];
|
|
frontmatter: {
|
|
title: string;
|
|
description?: string;
|
|
}
|
|
}
|
|
|
|
const { headings, frontmatter: { title, description } } = Astro.props;
|
|
---
|
|
<GuideLayout title={title} description={description ?? ""} headings={headings}>
|
|
<slot/>
|
|
</GuideLayout>
|