feat(ui): add infoheader component, improve quest map visuals

This commit is contained in:
shafin-r
2026-02-27 02:18:47 +06:00
parent f64d2cac4a
commit c7f0183956
6 changed files with 936 additions and 122 deletions

View File

@ -26,6 +26,10 @@ export interface User {
status: "ACTIVE" | "INACTIVE";
joined_at: string;
last_active: string;
total_xp: number;
current_level: number;
next_level_threshold: number;
current_level_start: number;
}
export interface LoginResponse {