в app.component. html добавить к
<nav *ngIf="isHomePage" class="navbar navbar-default"></nav>
в app.component.ts -> ngOnInit ()
this.router.events.subscribe(e => {
if (e instanceof RouterEvent) {
this.isHomePage = e.url.split('/').includes('home');
}
});
Надеюсь, это поможет вам.