Skip to Content
Get started

Get started

Run the docs locally

npm install npm run dev

Add a new page

  1. Create an .mdx file under content/… (e.g. content/projects/backend/netting.mdx).
  2. Add it to the folder’s _meta.js to place it in the sidebar.
  3. 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

BlockUse for
FlowDiagramSystem / data-flow maps from nodes + edges
VersionHistoryPast → current implementation timeline
BugFixLogA bug’s cause, fix, and prevention
SubtopicA titled, nested sub-section

Markdown handles the everyday pieces (headings, paragraphs, bullet points, code, images).

Last updated on