Skip to content
Snippets Groups Projects
Commit 401b519c authored by Guilhem CARRON's avatar Guilhem CARRON
Browse files

feat: Remove online mediation button from footer

parent c10c4435
No related branches found
No related tags found
4 merge requests!418V2.1.0,!400V2.0,!389feat: Remove online mediation button from footer,!230V2.0
...@@ -7,10 +7,6 @@ ...@@ -7,10 +7,6 @@
</div> </div>
<div class="right"> <div class="right">
<button class="mediationButton" (click)="goToMediation()">
<img src="/assets/ico/telephone.svg" alt="telephone" />
Médiation numérique
</button>
<a <a
class="metro-link" class="metro-link"
href="https://www.grandlyon.com" href="https://www.grandlyon.com"
......
import { Component } from '@angular/core'; import { Component } from '@angular/core';
import { Router } from '@angular/router';
@Component({ @Component({
selector: 'app-footer', selector: 'app-footer',
templateUrl: './footer.component.html', templateUrl: './footer.component.html',
styleUrls: ['./footer.component.scss'], styleUrls: ['./footer.component.scss'],
}) })
export class FooterComponent { export class FooterComponent {}
constructor(private router: Router) {}
public goToMediation(): void {
this.router.navigate(['/orientation'], { state: { mediationNumerique: true } });
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment