feat: Implement a new authentication system with dedicated login and registration pages, an authenticated route layout, and updated routing.

This commit is contained in:
Jrodenas
2026-03-12 00:20:03 +01:00
parent c04f805936
commit 0b50638583
16 changed files with 1460 additions and 684 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": []
}
]
}