📈 Ajout de arial-label sur les liens du footer

Les liens du footer n'ont pas de nom discernable
pull/1795/head
jobailla 2021-10-20 17:18:21 +02:00 committed by Maxime Quandalle
parent 9efcc0e892
commit 1231e319ca
1 changed files with 9 additions and 3 deletions

View File

@ -152,13 +152,19 @@ export default function Footer() {
</StyledFooter>
<div style={{ display: 'flex', justifyContent: 'center' }}>
<a href="https://twitter.com/monentreprisefr">
<a href="https://twitter.com/monentreprisefr" aria-label="twitter">
<SocialIcon media="twitter" />
</a>
<a href="https://www.linkedin.com/company/mon-entreprise-fr/">
<a
href="https://www.linkedin.com/company/mon-entreprise-fr/"
aria-label="linkedin"
>
<SocialIcon media="linkedin" />
</a>
<a href="https://github.com/betagouv/mon-entreprise/">
<a
href="https://github.com/betagouv/mon-entreprise/"
aria-label="github"
>
<SocialIcon media="github" />
</a>
</div>