sync current state

This commit is contained in:
2026-03-01 11:44:34 +01:00
parent 831ed42b7e
commit 086572dfcc
19 changed files with 2849 additions and 269 deletions

17
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "vite: dev server",
"type": "shell",
"command": "npm",
"args": [
"run",
"dev"
],
"isBackground": true,
"problemMatcher": [],
"group": "build"
}
]
}