Fix likes display, add avatar system (presets+upload), improve desktop layout, fix profile viewing

This commit is contained in:
2026-05-29 14:21:40 +03:00
parent 3664b60f10
commit 025e52e6b1
19 changed files with 346 additions and 94 deletions

View File

@@ -6,6 +6,7 @@ export interface User {
username: string;
points: number;
is_admin?: boolean;
avatar_url?: string | null;
created_at?: string;
}