Skip to content
This repository has been archived by the owner on Sep 2, 2021. It is now read-only.

fix(footer): the StyledLinks are already tags #199

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 9 additions & 9 deletions components/footer/Footer.jsx
Expand Up @@ -43,28 +43,28 @@ const Footer = () => {
</NextLink>
</Text>
<Text textAlign={["left", "center"]} width={[1, 1 / 6]}>
<a href="mailto:contact@workinfrance.beta.gouv.fr">
<StyledLink>Contactez-nous</StyledLink>
</a>
<StyledLink href="mailto:contact@workinfrance.beta.gouv.fr">
Contactez-nous
</StyledLink>
</Text>
</Flex>
</Box>
<Box px={5} width={1}>
<Flex flexDirection="row-reverse" flexWrap="wrap" justifyContent="space-around">
<a
<StyledLink
href={`${GITHUB_REPO}/tree/${publicRuntimeConfig.VERSION}`}
target="_blank"
rel="noopener noreferrer"
>
<StyledLink>Contribuer sur Github</StyledLink>
</a>
<a
Contribuer sur Github
</StyledLink>
<StyledLink
href={`${GITHUB_REPO}/compare/${publicRuntimeConfig.VERSION}...master`}
target="_blank"
rel="noopener noreferrer"
>
<StyledLink>Journal des modifications</StyledLink>
</a>
Journal des modifications
</StyledLink>
<Text>{`Version ${publicRuntimeConfig.VERSION}`}</Text>
</Flex>
</Box>
Expand Down