Add modern notes workspace with core legacy note functions

This commit is contained in:
2026-03-28 19:26:35 +00:00
parent 17904cff3a
commit 94d6840ef7
5 changed files with 607 additions and 0 deletions
+5
View File
@@ -1090,6 +1090,11 @@ app.get('/notes', async (c) => {
return c.html(html);
});
app.get('/notes-workspace', async (c) => {
const html = await Bun.file(new URL('./notes-workspace.html', import.meta.url)).text();
return c.html(html);
});
app.get('/tasks', async (c) => {
const html = await Bun.file(new URL('./tasks.html', import.meta.url)).text();
return c.html(html);