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

Merge branch 'feat/remove-mediation-from-footer' into 'V2.0'

feat: Remove online mediation button from footer

See merge request !389
parents c10c4435 401b519c
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