We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cc301a commit 30437a3Copy full SHA for 30437a3
src/app/docs/[[...slug]]/page.tsx
@@ -12,7 +12,13 @@ export default async function Page(props: { params: Promise<{ slug?: string[] }>
12
const MDXContent = page.data.body
13
14
return (
15
- <DocsPage toc={page.data.toc} full={page.data.full}>
+ <DocsPage
16
+ toc={page.data.toc}
17
+ full={page.data.full}
18
+ tableOfContent={{
19
+ style: "clerk",
20
+ }}
21
+ >
22
<DocsTitle>{page.data.title}</DocsTitle>
23
<DocsDescription>{page.data.description}</DocsDescription>
24
<DocsBody>
0 commit comments