first commit

This commit is contained in:
Raul Lugo
2026-01-22 12:31:05 +01:00
commit 261be4ea0e
16 changed files with 7031 additions and 0 deletions

8
types/astro.locals.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
declare global {
namespace App {
interface Locals {
user?: { sub: string; email?: string } | null;
}
}
}
export {};