detail on course

This commit is contained in:
OnlyPapy98
2025-12-31 14:53:40 +01:00
parent 87c33f25cf
commit afa5fab55d
17 changed files with 462 additions and 41 deletions

View File

@@ -25,6 +25,14 @@ const routes: Routes = [
path: 'resultat',
loadComponent: () => import('./pages/rapport/rapport').then((m) => m.Rapport),
},
{
path: 'gains',
loadComponent: () => import('./pages/gains/gains').then((m) => m.Gains),
},
{
path: 'gains/:id',
loadComponent: () => import('./pages/gain-details/gain-details').then((m) => m.GainDetails),
},
{
path: 'users',
loadComponent: () => import('./pages/users/users').then((m) => m.UsersPage),