added admin dashboard

This commit is contained in:
2026-04-20 12:48:58 +02:00
parent 6145775922
commit d3f740cfa9
56 changed files with 4438 additions and 669 deletions
+10
View File
@@ -0,0 +1,10 @@
// See https://kit.svelte.dev/docs/types#app
declare global {
namespace App {
interface Locals {
admin: { username: string } | null;
}
}
}
export {};