diff --git a/src/app/component/footer-menu/footer-menu.component.html b/src/app/component/footer-menu/footer-menu.component.html index e93e105..1cd3f0e 100644 --- a/src/app/component/footer-menu/footer-menu.component.html +++ b/src/app/component/footer-menu/footer-menu.component.html @@ -1,18 +1,20 @@ + + +
+ Home +
+
+
Schedule
- - -
- Orders -
-
+
diff --git a/src/app/component/footer-menu/footer-menu.component.ts b/src/app/component/footer-menu/footer-menu.component.ts index f89d75b..e223a20 100644 --- a/src/app/component/footer-menu/footer-menu.component.ts +++ b/src/app/component/footer-menu/footer-menu.component.ts @@ -7,7 +7,7 @@ import { Component, OnInit } from '@angular/core'; styleUrls: ['./footer-menu.component.scss'], }) export class FooterMenuComponent implements OnInit { - + constructor(public router: Router) {} ngOnInit() {} @@ -17,8 +17,8 @@ export class FooterMenuComponent implements OnInit { this.router.navigate(['/schedule']); break; - case 'ORDERS': - this.router.navigate(['/schedule']); + case 'DASH': + this.router.navigate(['/dash']); break; case 'ENCOUNTERS':