research-notes/blog
jordan ec0b89206f
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
feat: add audio playback and enhanced note UI with sidebar navigation
- Add AudioSection component with media player and waveform visualization
- Add NoteContent component with inline link support and syntax highlighting
- Add NoteSidebar with collapsible sections for navigation
- Add SidebarContext for managing sidebar state
- Update note page layout to use new component architecture
- Add assets utility for GCS audio/video URL generation
- Update content library with audio/skill/prompt type support
- Add vision.md with editorial guidelines
- Update .gitignore with additional security patterns
- Add upload-asset.sh script for GCS asset management

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-08 11:08:25 -07:00
..
content feat: add audio playback and enhanced note UI with sidebar navigation 2026-02-08 11:08:25 -07:00
public Initial commit: research notes journal 2026-02-07 13:12:07 -07:00
src feat: add audio playback and enhanced note UI with sidebar navigation 2026-02-08 11:08:25 -07:00
.gitignore Initial commit: research notes journal 2026-02-07 13:12:07 -07:00
CLAUDE.md feat: add audio playback and enhanced note UI with sidebar navigation 2026-02-08 11:08:25 -07:00
components.json Initial commit: research notes journal 2026-02-07 13:12:07 -07:00
eslint.config.mjs Initial commit: research notes journal 2026-02-07 13:12:07 -07:00
next.config.ts Initial orchard9 deployment 2026-02-07 14:42:06 -07:00
package-lock.json feat: add audio playback and enhanced note UI with sidebar navigation 2026-02-08 11:08:25 -07:00
package.json feat: add audio playback and enhanced note UI with sidebar navigation 2026-02-08 11:08:25 -07:00
pnpm-lock.yaml Initial orchard9 deployment 2026-02-07 14:42:06 -07:00
postcss.config.mjs Initial commit: research notes journal 2026-02-07 13:12:07 -07:00
README.md Initial commit: research notes journal 2026-02-07 13:12:07 -07:00
tsconfig.json Initial commit: research notes journal 2026-02-07 13:12:07 -07:00
vision.md feat: add audio playback and enhanced note UI with sidebar navigation 2026-02-08 11:08:25 -07:00

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