Moved from maxwell/blog to standalone repository. - Next.js research journal application - Notes 001-005 with YAML/MD content structure - Claude Code configuration for blog development Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| content | ||
| public | ||
| src | ||
| .dockerignore | ||
| .gitignore | ||
| CLAUDE.md | ||
| components.json | ||
| Dockerfile | ||
| eslint.config.mjs | ||
| next.config.ts | ||
| package-lock.json | ||
| package.json | ||
| postcss.config.mjs | ||
| README.md | ||
| tsconfig.json | ||
A Research Journal
Personal research projects exploring unfamiliar territory with AI as a thinking partner.
Getting Started
npm install
npm run dev
Open http://localhost:19197 to view the site.
Structure
blog/
├── src/
│ ├── app/
│ │ ├── page.tsx # Journal home (project list)
│ │ ├── maxwell/ # Maxwell project
│ │ │ ├── page.tsx # Project landing
│ │ │ ├── white-paper/ # Formal paper
│ │ │ └── notes/ # Research notes
│ │ ├── layout.tsx
│ │ └── globals.css
│ ├── components/
│ │ └── ui/
│ └── lib/
│ └── utils.ts
├── public/
└── package.json
Routes
/- Journal home with list of projects/maxwell- Maxwell project landing with notes list/maxwell/white-paper- Formal paper (outline → filled as research progresses)/maxwell/notes/[slug]- Individual research notes
Tech Stack
- Next.js 16
- React 19
- Tailwind CSS 4
- TypeScript