angular hide component based on route code example
Example: angular hide element from component when on certain page
// in .component.ts file
import { Router } from '@angular/router';
export class ExampleComponent {
constructor(private _router: Router) {}
}
// in html file
<footer *ngIf="_router.url != '/your-route'"></footer>