Add profile and login screen + first api logic draft

This commit is contained in:
2025-12-09 18:29:24 +01:00
parent abe14f4c3f
commit 49b6ecadb2
19 changed files with 1046 additions and 810 deletions

View File

@ -1,9 +1,11 @@
// --- TYPES & export INTERFACES (File: types.ts) ---
// In un progetto reale, metti queste interfacce in un file separato 'types.ts'
export interface UserData {
name: string;
role: string;
surname: string;
username: string;
role?: string;
email?: string;
id: string;
}