fix(ui): change ui theme color

feat(calc): add geogebra based graph calculator for tests
This commit is contained in:
shafin-r
2026-02-20 00:03:23 +06:00
parent 626616c8b5
commit 3c8f945539
18 changed files with 2063 additions and 259 deletions

View File

@ -11,3 +11,19 @@ export interface Leaderboard {
top_users: LeaderboardEntry[];
user_rank: LeaderboardEntry;
}
export interface PredictedScore {
total_score: number;
math_prediction: {
score: number;
range_min: number;
range_max: number;
confidence: string;
};
rw_prediction: {
score: number;
range_min: number;
range_max: number;
confidence: string;
};
}