Files
YungR1otz/lib/core/router/app_routes.dart
Lucas Saburido cabf2025cd first commit
2026-05-13 16:26:45 +01:00

16 lines
473 B
Dart

class AppRoutes {
const AppRoutes._();
static const splash = '/';
static const login = '/auth/login';
static const signup = '/auth/signup';
static const forgotPassword = '/auth/forgot-password';
static const home = '/home';
static const uploadPost = '/upload-post';
static const profile = '/profile';
static const music = '/music';
static const discover = '/discover';
static const admin = '/admin';
static const themePreview = '/theme-preview';
}