Add logo and rename

This commit is contained in:
2025-11-12 17:16:13 +01:00
parent 584a4a0acd
commit f903e28728
49 changed files with 628 additions and 192 deletions

View File

@ -1,6 +1,6 @@
# Architecture Overview
Project Notes is a web-based Markdown note-taking application built with a hybrid architecture combining Go backend, HTMX for interactions, and modern JavaScript for UI enhancements.
PersoNotes is a web-based Markdown note-taking application built with a hybrid architecture combining Go backend, HTMX for interactions, and modern JavaScript for UI enhancements.
## Design Philosophy
@ -68,7 +68,7 @@ User → Browser
│ ├─ Inject file tree
│ └─ Return HTML
├─ Load static/dist/project-notes-frontend.es.js (Vite bundle)
├─ Load static/dist/personotes-frontend.es.js (Vite bundle)
│ │
│ ├─ Initialize FileTree (file-tree.js)
│ ├─ Initialize Search (search.js)
@ -237,8 +237,8 @@ frontend/src/
↓ (Vite build)
static/dist/
├── project-notes-frontend.es.js (1.0 MB - ES modules)
└── project-notes-frontend.umd.js (679 KB - UMD)
├── personotes-frontend.es.js (1.0 MB - ES modules)
└── personotes-frontend.umd.js (679 KB - UMD)
↓ (Loaded by browser)
@ -472,7 +472,7 @@ HTTP Request
```nginx
location / {
auth_basic "Project Notes";
auth_basic "PersoNotes";
auth_basic_user_file /etc/nginx/.htpasswd;
proxy_pass http://localhost:8080;
}