aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/templates/layout/layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/templates/layout/layout.tsx')
-rw-r--r--src/components/templates/layout/layout.tsx30
1 files changed, 25 insertions, 5 deletions
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<LayoutProps> = ({
});
const mainNav: HeaderProps['nav'] = [
- { id: 'home', label: homeLabel, href: '/', logo: <Home /> },
- { id: 'blog', label: blogLabel, href: '/blog', logo: <PostsStack /> },
+ {
+ id: 'home',
+ label: homeLabel,
+ href: '/',
+ logo: <Home aria-hidden={true} />,
+ },
+ {
+ id: 'blog',
+ label: blogLabel,
+ href: '/blog',
+ logo: <PostsStack aria-hidden={true} />,
+ },
{
id: 'projects',
label: projectsLabel,
href: '/projets',
- logo: <ComputerScreen />,
+ logo: <ComputerScreen aria-hidden={true} />,
+ },
+ {
+ id: 'cv',
+ label: cvLabel,
+ href: '/cv',
+ logo: <Career aria-hidden={true} />,
+ },
+ {
+ id: 'contact',
+ label: contactLabel,
+ href: '/contact',
+ logo: <Envelop aria-hidden={true} />,
},
- { id: 'cv', label: cvLabel, href: '/cv', logo: <Career /> },
- { id: 'contact', label: contactLabel, href: '/contact', logo: <Envelop /> },
];
const legalNoticeLabel = intl.formatMessage({