mirror of
https://github.com/eliasstepanik/strudel.git
synced 2026-01-14 15:18:30 +00:00
18 lines
458 B
Plaintext
18 lines
458 B
Plaintext
---
|
|
import TableOfContents from './TableOfContents';
|
|
import MoreMenu from './MoreMenu.astro';
|
|
import type { MarkdownHeading } from 'astro';
|
|
|
|
type Props = {
|
|
headings: MarkdownHeading[];
|
|
githubEditUrl: string;
|
|
};
|
|
|
|
const { headings, githubEditUrl } = Astro.props as Props;
|
|
---
|
|
|
|
<nav aria-labelledby="grid-right" class="min-w-[300px]">
|
|
<TableOfContents client:media="(min-width: 50em)" headings={headings} />
|
|
<MoreMenu editHref={githubEditUrl} />
|
|
</nav>
|