gitextract_nu1edy77/ ├── .gitignore ├── LICENSE ├── README.md ├── app/ │ ├── actions.ts │ ├── kv-client.ts │ ├── layout.tsx │ ├── note/ │ │ ├── [id]/ │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ └── edit/ │ │ ├── [id]/ │ │ │ └── page.tsx │ │ ├── loading.tsx │ │ └── page.tsx │ ├── page.tsx │ └── style.css ├── components/ │ ├── auth-button.tsx │ ├── note-editor.tsx │ ├── note-list-skeleton.tsx │ ├── note-list.tsx │ ├── note-preview.tsx │ ├── note-ui.tsx │ ├── search.tsx │ ├── sidebar-note.tsx │ └── sidebar.tsx ├── libs/ │ └── session.ts ├── middleware/ │ ├── api.ts │ ├── auth.ts │ ├── edit.ts │ └── logout.ts ├── middleware.ts ├── package.json └── tsconfig.json