feat: update documentation structure and remove 'full' property from MDX files

- Enhanced the DocsPage component by adding table of content and popover configurations.
- Removed the 'full' property from multiple MDX files to streamline documentation structure.
- Updated meta.json to reflect new documentation organization and added a 'connectors' page.
This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-01-06 03:39:25 -08:00
parent 929bc026e6
commit ba54e1da06
23 changed files with 581 additions and 8 deletions

View file

@ -11,7 +11,17 @@ export default async function Page(props: { params: Promise<{ slug?: string[] }>
const MDX = page.data.body;
return (
<DocsPage toc={page.data.toc} full={page.data.full}>
<DocsPage
toc={page.data.toc}
full={page.data.full}
tableOfContent={{
style: "clerk",
single: false,
}}
tableOfContentPopover={{
style: "clerk",
}}
>
<DocsTitle>{page.data.title}</DocsTitle>
<DocsDescription>{page.data.description}</DocsDescription>
<DocsBody>