Add registration tab to LoginScreen and implement OrganizerProfile screen

This commit is contained in:
2026-03-20 23:57:21 +01:00
parent 7f224f0d03
commit 499b93e100
6 changed files with 598 additions and 160 deletions
@@ -11,6 +11,7 @@ sealed class AppScreen(val route: String) {
data object Ping : AppScreen("/ping")
data object Profile : AppScreen("/profile")
data object OrganizerProfile : AppScreen("/organizer/profile")
data object AuthCallback : AppScreen("/auth/callback")
companion object {
@@ -23,6 +24,7 @@ sealed class AppScreen(val route: String) {
Routes.LOGIN, Routes.Auth.LOGIN -> Login()
"/ping" -> Ping
"/profile" -> Profile
"/organizer/profile" -> OrganizerProfile
"/auth/callback" -> AuthCallback
else -> Landing // Default fallback
}