feat: Implement dynamic top professionals section with agent/lender tabs using Riverpod for state management.

This commit is contained in:
pradeepkumar
2026-02-24 03:28:13 +05:30
parent 0bc8852c17
commit 1f48ff3852
8 changed files with 1034 additions and 285 deletions

View File

@@ -1,6 +1,7 @@
class ApiConstants {
ApiConstants._();
// Auth
static const String authRegister = '/auth/register';
static const String authLogin = '/auth/login';
static const String authForgotPassword = '/auth/forgot-password';
@@ -10,4 +11,8 @@ class ApiConstants {
static const String authMe = '/auth/me';
static const String authRefresh = '/auth/refresh';
static const String authLogout = '/auth/logout';
// Agents
static const String agents = '/agents';
static const String agentTypes = '/agent-types';
}