/// Route names for navigation. class RouteNames { /// Home route. static const String home = '/home'; /// Immich route. static const String immich = '/immich'; /// Nostr Events route. static const String nostrEvents = '/nostr-events'; /// Session route. static const String session = '/session'; /// Settings route. static const String settings = '/settings'; /// Relay Management route. static const String relayManagement = '/relay-management'; /// Private constructor to prevent instantiation. RouteNames._(); }