Get started
Run the docs locally
npm install
npm run devAdd a new page
- Create an
.mdxfile undercontent/…(e.g.content/projects/backend/netting.mdx). - Add it to the folder’s
_meta.jsto place it in the sidebar. - Write prose in Markdown, and drop in blocks where you need them — no imports required:
<VersionHistory entries={[{ version: 'v1', title: 'First cut', current: true }]} />
<BugFixLog title="..." severity="P1" rootCause="..." fix="..." prevention="..." />The reusable blocks
| Block | Use for |
|---|---|
FlowDiagram | System / data-flow maps from nodes + edges |
VersionHistory | Past → current implementation timeline |
BugFixLog | A bug’s cause, fix, and prevention |
Subtopic | A titled, nested sub-section |
Markdown handles the everyday pieces (headings, paragraphs, bullet points, code, images).
Last updated on