diff --git a/src/app/app.html b/src/app/app.html
index ceec245..3d1490d 100644
--- a/src/app/app.html
+++ b/src/app/app.html
@@ -7,13 +7,50 @@
- - Accueil
- - Stock
- - Fournisseur
- - Livreur
- - Devis
- - Bon de commande
- - Bon de livraison
+ -
+
+
+ Accueil
+
+
+ -
+
+
+ Stock
+
+
+ -
+
+
+ Fournisseur
+
+
+ -
+
+
+ Livreur
+
+
+ -
+
+
+ Devis
+
+
+
+
+ -
+
+
+ Bon de commande
+
+
+ -
+
+
+ Bon de livraison
+
+
- Notifications
- Profil
- Réglages
diff --git a/src/app/app.ts b/src/app/app.ts
index f570b9d..fa98bea 100644
--- a/src/app/app.ts
+++ b/src/app/app.ts
@@ -1,12 +1,13 @@
import { Component } from '@angular/core';
-import { RouterOutlet } from '@angular/router';
+import {RouterLink, RouterLinkActive, RouterOutlet} from '@angular/router';
import { NzLayoutModule } from 'ng-zorro-antd/layout';
import { NzMenuModule } from 'ng-zorro-antd/menu';
import {NzFlexDirective} from "ng-zorro-antd/flex";
+import {NzIconDirective} from "ng-zorro-antd/icon";
@Component({
selector: 'app-root',
- imports: [RouterOutlet, NzLayoutModule, NzMenuModule, NzFlexDirective],
+ imports: [RouterOutlet, NzLayoutModule, NzMenuModule, NzFlexDirective, NzIconDirective, RouterLinkActive, RouterLink],
templateUrl: './app.html',
styleUrl: './app.css'
})