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>
48 lines
1.1 KiB
Markdown
48 lines
1.1 KiB
Markdown
# A Research Journal
|
|
|
|
Personal research projects exploring unfamiliar territory with AI as a thinking partner.
|
|
|
|
## Getting Started
|
|
|
|
```bash
|
|
npm install
|
|
npm run dev
|
|
```
|
|
|
|
Open [http://localhost:19197](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
|