feat: login (#2)

Co-authored-by: Jrodenas <jrodenas@gmail.com>
Reviewed-on: #2
This commit is contained in:
2026-03-23 19:05:56 +00:00
parent cec96b94da
commit 828bf30faf
21 changed files with 3406 additions and 2372 deletions

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

@@ -0,0 +1,25 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "pnpm: dev",
"command": "pnpm dev",
"problemMatcher": [],
"group": {
"kind": "test",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "dedicated"
}
},
{
"type": "shell",
"label": "pnpm: build",
"command": "pnpm build",
"problemMatcher": []
}
]
}