squash and nuke dev
This commit is contained in:
parent
b2d43ad425
commit
f26e76c114
93 changed files with 33827 additions and 7831 deletions
|
|
@ -1,7 +1,6 @@
|
|||
---
|
||||
import DocsLayout from "@layouts/DocsLayout.astro";
|
||||
import TOC from "@components/navigation/sidebars/TOC.astro";
|
||||
import TOCIntersectionObserver from "@src/components/hooks/TOCIntersectionObserver.astro";
|
||||
import type { ConfigHeading } from "@src/components/navigation/sidebars/types";
|
||||
|
||||
export interface Props {
|
||||
|
|
@ -12,15 +11,20 @@ export interface Props {
|
|||
|
||||
const { title, description, headings } = Astro.props;
|
||||
---
|
||||
|
||||
<DocsLayout title={title} description={description} headings={headings}>
|
||||
<div class="docs">
|
||||
<div class="docs-content">
|
||||
<hr/>
|
||||
<hr>
|
||||
<h1>{title}</h1>
|
||||
<slot/>
|
||||
<slot />
|
||||
</div>
|
||||
</div>
|
||||
<TOC slot="alongside-content" mobile={false} title={title} headings={headings} data-pagefind-ignore/>
|
||||
<TOC
|
||||
slot="alongside-content"
|
||||
mobile={false}
|
||||
title={title}
|
||||
headings={headings}
|
||||
data-pagefind-ignore
|
||||
/>
|
||||
</DocsLayout>
|
||||
|
||||
<TOCIntersectionObserver/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue