diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-01-29 18:21:37 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-01-29 19:02:57 +0100 |
| commit | e4d5b8151802517b2943756fc0d09ffa95e2c4e2 (patch) | |
| tree | 9e99137a7b64ea7993a8311a7162336a551be8b2 /src/components/FooterNav/FooterNav.tsx | |
| parent | 47b854de26dea24e7838fd0804df103dee99635f (diff) | |
chore: replace lingui functions with react-intl
Diffstat (limited to 'src/components/FooterNav/FooterNav.tsx')
| -rw-r--r-- | src/components/FooterNav/FooterNav.tsx | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/src/components/FooterNav/FooterNav.tsx b/src/components/FooterNav/FooterNav.tsx index 7266e7e..918fed7 100644 --- a/src/components/FooterNav/FooterNav.tsx +++ b/src/components/FooterNav/FooterNav.tsx @@ -1,9 +1,23 @@ import Link from 'next/link'; import styles from './FooterNav.module.scss'; -import { footerNav } from '@config/nav'; +import { NavItem } from '@ts/types/nav'; +import { useIntl } from 'react-intl'; const FooterNav = () => { - const navItems = footerNav.map((item) => { + const intl = useIntl(); + + const footerNavConfig: NavItem[] = [ + { + id: 'legal-notice', + name: intl.formatMessage({ + defaultMessage: 'Legal notice', + description: 'FooterNav: legal notice link', + }), + slug: '/mentions-legales', + }, + ]; + + const navItems = footerNavConfig.map((item) => { return ( <li key={item.id} className={styles.item}> <Link href={item.slug}> |
