# 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