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
Loading
......@@ -7,10 +7,6 @@
</div>
<div class="right">
<button class="mediationButton" (click)="goToMediation()">
<img src="/assets/ico/telephone.svg" alt="telephone" />
Médiation numérique
</button>
<a
class="metro-link"
href="https://www.grandlyon.com"
......
import { Component } from '@angular/core';
import { Router } from '@angular/router';
@Component({
selector: 'app-footer',
templateUrl: './footer.component.html',
styleUrls: ['./footer.component.scss'],
})
export class FooterComponent {
constructor(private router: Router) {}
public goToMediation(): void {
this.router.navigate(['/orientation'], { state: { mediationNumerique: true } });
}
}
export class FooterComponent {}
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