From ac79a48c07c538316949d6284bc5d9c0eb2e3f91 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 7 Jun 2022 12:11:28 +0200 Subject: chore: add aria hidden attribute to SVG icons --- src/components/templates/layout/layout.tsx | 30 +++++++++++++++++++++++++----- 1 file changed, 25 insertions(+), 5 deletions(-) (limited to 'src/components/templates/layout/layout.tsx') diff --git a/src/components/templates/layout/layout.tsx b/src/components/templates/layout/layout.tsx index 693951e..2a10a30 100644 --- a/src/components/templates/layout/layout.tsx +++ b/src/components/templates/layout/layout.tsx @@ -104,16 +104,36 @@ const Layout: FC = ({ }); const mainNav: HeaderProps['nav'] = [ - { id: 'home', label: homeLabel, href: '/', logo: }, - { id: 'blog', label: blogLabel, href: '/blog', logo: }, + { + id: 'home', + label: homeLabel, + href: '/', + logo: , + }, + { + id: 'blog', + label: blogLabel, + href: '/blog', + logo: , + }, { id: 'projects', label: projectsLabel, href: '/projets', - logo: , + logo: , + }, + { + id: 'cv', + label: cvLabel, + href: '/cv', + logo: , + }, + { + id: 'contact', + label: contactLabel, + href: '/contact', + logo: , }, - { id: 'cv', label: cvLabel, href: '/cv', logo: }, - { id: 'contact', label: contactLabel, href: '/contact', logo: }, ]; const legalNoticeLabel = intl.formatMessage({ -- cgit v1.2.3