aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/FooterNav
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-02-11 17:56:27 +0100
committerArmand Philippot <git@armandphilippot.com>2022-02-11 17:56:27 +0100
commit8647197a05490e2c10106a021cf6760bdabb5b2a (patch)
tree5fb56fad1c0f585ac063a8f6390e68586e3e6084 /src/components/FooterNav
parentc69c107de84aa3b2cdbf0ed087d0314f22d30b18 (diff)
chore: improve accessibility
Diffstat (limited to 'src/components/FooterNav')
-rw-r--r--src/components/FooterNav/FooterNav.tsx8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/components/FooterNav/FooterNav.tsx b/src/components/FooterNav/FooterNav.tsx
index 918fed7..f1fd0b7 100644
--- a/src/components/FooterNav/FooterNav.tsx
+++ b/src/components/FooterNav/FooterNav.tsx
@@ -29,7 +29,13 @@ const FooterNav = () => {
return (
<div className={styles.wrapper}>
- <nav className={styles.nav}>
+ <nav
+ className={styles.nav}
+ aria-label={intl.formatMessage({
+ defaultMessage: 'Footer',
+ description: 'FooterNav: aria-label',
+ })}
+ >
<ul className={styles.list}>{navItems}</ul>
</nav>
</div>