diff --git a/src/components/Footer/UdeMFooterNote.jsx b/src/components/Footer/UdeMFooterNote.jsx index 713b0aa..2c68048 100644 --- a/src/components/Footer/UdeMFooterNote.jsx +++ b/src/components/Footer/UdeMFooterNote.jsx @@ -79,6 +79,11 @@ export function UdeMFooterNote() { Paramètres des témoins + + + Paramètres des témoins + + Accessibilité diff --git a/src/components/Link.jsx b/src/components/Link.jsx index 96483e1..b4586df 100644 --- a/src/components/Link.jsx +++ b/src/components/Link.jsx @@ -15,10 +15,10 @@ const Link = forwardRef(function Link(props, ref) { // Tailor the following test to your environment. // This example assumes that any internal link (intended for Gatsby) // will start with exactly one slash, and that anything else is external. - const external = /^(?:https?:)?\/\//.test(to) + const isExternal = /^(?:https?:)?\/\//.test(to) // Use Gatsby Link for internal links, and for others - if (external) { + if (isExternal) { return ( {children} @@ -33,4 +33,6 @@ const Link = forwardRef(function Link(props, ref) { ) }) +Link.muiName = MuiLink.muiName + export default Link diff --git a/src/templates/PageTemplate.jsx b/src/templates/PageTemplate.jsx index 8fd2111..02a5179 100644 --- a/src/templates/PageTemplate.jsx +++ b/src/templates/PageTemplate.jsx @@ -67,6 +67,7 @@ export function Head({ pageContext, location }) { + ) }