initial push

This commit is contained in:
Philipp
2025-11-28 09:35:02 +01:00
commit 471ea10341
97 changed files with 7424 additions and 0 deletions

11
js/storage.js Normal file
View File

@@ -0,0 +1,11 @@
// js/storage.js
export function getStoredProjects() {
try {
return JSON.parse(localStorage.getItem('ls_projects') || '{}');
} catch (e) {
return {};
}
}
export function setStoredProjects(projectsObj) {
localStorage.setItem('ls_projects', JSON.stringify(projectsObj));
}