diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index 29622f8..3bb5d8f 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -8,7 +8,9 @@ export const routes: Routes = [ path: '', loadComponent: () => import('./components/navbar/navbar.component').then(m => m.NavbarComponent), children: [ - {path: 'home', loadComponent: () => import('./pages/home/home.component').then(m => m.HomeComponent)}, + { + path: 'home', + loadComponent: () => import('./pages/home/home.component').then(m => m.HomeComponent)}, { path: 'groups', loadComponent: () => import('./pages/groups/groups.component').then(m => m.GroupsComponent) diff --git a/src/app/components/navbar/navbar.component.html b/src/app/components/navbar/navbar.component.html index 32bc31c..0b7ca7a 100644 --- a/src/app/components/navbar/navbar.component.html +++ b/src/app/components/navbar/navbar.component.html @@ -1,8 +1,4 @@ - - - - - - \ No newline at end of file + \ No newline at end of file diff --git a/src/app/pages/ranking/ranking.component.html b/src/app/pages/ranking/ranking.component.html index e69de29..84b0e6b 100644 --- a/src/app/pages/ranking/ranking.component.html +++ b/src/app/pages/ranking/ranking.component.html @@ -0,0 +1,111 @@ + +

Classement général

+
+ +
+
+

1

+
+

Mathys

+

52 défis - 18 victoires

+
+

412 pts

+
+
+

2

+
+

Mathys

+

52 défis - 18 victoires

+
+

412 pts

+
+
+

3

+
+

Mathys

+

52 défis - 18 victoires

+
+

412 pts

+
+
+

4

+
+

Mathys

+

52 défis - 18 victoires

+
+

412 pts

+
+
+

5

+
+

Mathys

+

52 défis - 18 victoires

+
+

412 pts

+
+
+

6

+
+

Mathys

+

52 défis - 18 victoires

+
+

412 pts

+
+
+

7

+
+

Mathys

+

52 défis - 18 victoires

+
+

412 pts

+
+
+

8

+
+

Mathys

+

52 défis - 18 victoires

+
+

412 pts

+
+
+

9

+
+

Mathys

+

52 défis - 18 victoires

+
+

412 pts

+
+
+

10

+
+

Mathys

+

52 défis - 18 victoires

+
+

412 pts

+
+
+

11

+
+

Mathys

+

52 défis - 18 victoires

+
+

412 pts

+
+
+

12

+
+

Mathys

+

52 défis - 18 victoires

+
+

412 pts

+
+
+

13

+
+

Mathys

+

52 défis - 18 victoires

+
+

412 pts

+
+
+
\ No newline at end of file diff --git a/src/app/pages/ranking/ranking.component.ts b/src/app/pages/ranking/ranking.component.ts index e1a2fcd..f7b3060 100644 --- a/src/app/pages/ranking/ranking.component.ts +++ b/src/app/pages/ranking/ranking.component.ts @@ -1,10 +1,13 @@ import {Component} from '@angular/core'; +import {IonicModule} from "@ionic/angular"; @Component({ selector: 'app-ranking', templateUrl: './ranking.component.html', styleUrls: ['./ranking.component.scss'], - imports: [] + imports: [ + IonicModule + ] }) export class RankingComponent { }