feat: profile

This commit is contained in:
moolcoov
2025-03-03 18:07:35 +03:00
parent c2ec50027d
commit ec5584ecf8
14 changed files with 462 additions and 541 deletions
@@ -2,4 +2,13 @@ export interface User {
id: string;
email: string;
username: string;
avatar?: string;
achievements?: Achievement[];
}
export interface Achievement {
name: string;
description: string;
received_at: Date;
icon?: string;
}