feat: massive front-end overhaul and initial github release

This commit is contained in:
Simeon Radivoev 2026-02-08 21:18:10 +02:00
parent a2b40e38bf
commit d5a0e70580
Signed by: simeonradivoev
GPG key ID: 7611A451D2A5D37A
303 changed files with 19840 additions and 676 deletions

18
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,18 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Run Act",
"type": "shell",
"command": "act",
"args": ["--artifact-server-path", "artifacts", "-W", ".github/workflows/build.yml"],
"options": {
"env": {
"PATH": "${env:PATH}",
"ACTIONS_RUNTIME_TOKEN": "foo"
},
},
"problemMatcher": []
}
]
}