first commit

This commit is contained in:
Lucas Saburido
2026-05-13 16:26:45 +01:00
commit cabf2025cd
252 changed files with 13524 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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';
}