Static Next.js writeup blog based on the provided reference layout, rebuilt around local MDX content.
npm run dev
npm run lint
npm run test
npm run build- Published posts live in
content/posts/*.mdx. - Use
content/templates/post-template.mdxas the starting point for new posts. - Slugs come from filenames.
- Tags are generated from frontmatter.
- Run
npm run dev. - Open
http://localhost:3000/mdx-editor. - This route is development-only and intended for Chromium browsers.
- It can open, edit, and save local
.mdxfiles directly through the File System Access API.
Each post can override:
- page colors
- body / heading / mono fonts
- code block colors
- Mermaid colors
Supported font sources in v1:
- Google Fonts
- local files served from
public/fonts
The app mounts Agentation only in development.
Recommended MCP setup:
npx add-mcp "npx -y agentation-mcp server"
npx agentation-mcp doctorIf you want to remove Agentation later, delete src/components/agentation-root.tsx and the dev-only import block in src/app/layout.tsx.