changed groups page to publication page
This commit is contained in:
@@ -14,7 +14,7 @@ export const routes: Routes = [
|
||||
},
|
||||
{
|
||||
path: 'groups',
|
||||
loadComponent: () => import('./pages/groups/groups.component').then(m => m.GroupsComponent)
|
||||
loadComponent: () => import('./pages/publication/publication.component').then(m => m.PublicationComponent)
|
||||
},
|
||||
{
|
||||
path: 'ranking',
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
</ion-tab-button>
|
||||
|
||||
<ion-tab-button tab="groups" routerLink="/groups">
|
||||
<ion-icon name="chatbubbles-outline"></ion-icon>
|
||||
<ion-icon name="globe-outline"></ion-icon>
|
||||
</ion-tab-button>
|
||||
|
||||
<ion-tab-button tab="ranking" routerLink="/ranking">
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
import {Component} from '@angular/core';
|
||||
import {IonicModule} from "@ionic/angular";
|
||||
import {addIcons} from 'ionicons';
|
||||
import {homeOutline, peopleOutline, chatbubblesOutline, statsChartOutline} from 'ionicons/icons';
|
||||
import {homeOutline, peopleOutline, globeOutline, statsChartOutline} from 'ionicons/icons';
|
||||
|
||||
addIcons({
|
||||
'home-outline': homeOutline,
|
||||
'people-outline': peopleOutline,
|
||||
'chatbubbles-outline': chatbubblesOutline,
|
||||
'globe-outline': globeOutline,
|
||||
'stats-chart-outline': statsChartOutline
|
||||
});
|
||||
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
import {Component} from '@angular/core';
|
||||
import {IonicModule} from "@ionic/angular";
|
||||
|
||||
@Component({
|
||||
selector: 'app-groups',
|
||||
templateUrl: './groups.component.html',
|
||||
styleUrls: ['./groups.component.scss'],
|
||||
imports: [
|
||||
IonicModule
|
||||
]
|
||||
})
|
||||
export class GroupsComponent {
|
||||
}
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
<ion-header>
|
||||
<ion-toolbar>
|
||||
<ion-title class="font-mono">Mes groupes</ion-title>
|
||||
<ion-title class="font-mono">Publications</ion-title>
|
||||
</ion-toolbar>
|
||||
</ion-header>
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
import {Component} from '@angular/core';
|
||||
import {IonicModule} from "@ionic/angular";
|
||||
|
||||
@Component({
|
||||
selector: 'app-publication',
|
||||
templateUrl: './publication.component.html',
|
||||
styleUrls: ['./publication.component.scss'],
|
||||
imports: [
|
||||
IonicModule
|
||||
]
|
||||
})
|
||||
export class PublicationComponent {
|
||||
}
|
||||
Reference in New Issue
Block a user