diff --git a/src/client/src/Pages/WrapperLayout.tsx b/src/client/src/Pages/WrapperLayout.tsx
index d37bb41..9125587 100644
--- a/src/client/src/Pages/WrapperLayout.tsx
+++ b/src/client/src/Pages/WrapperLayout.tsx
@@ -1,12 +1,14 @@
import Footer from "../components/Footer/Footer";
import Header from "../components/Header/Header";
+import SkipLinks from "../components/SkipLinks/SkipLinks";
import "./layout.css";
function WrapperLayout(props: { children: JSX.Element }) {
return (
+
-
+
{props.children}
diff --git a/src/client/src/components/Footer/Footer.tsx b/src/client/src/components/Footer/Footer.tsx
index 5fb574a..772a210 100644
--- a/src/client/src/components/Footer/Footer.tsx
+++ b/src/client/src/components/Footer/Footer.tsx
@@ -3,6 +3,7 @@ import { Footer as DsfrFooter } from "@codegouvfr/react-dsfr/Footer";
function Footer() {
return (
]
+ ? []
: [
{
iconId: "fr-icon-account-circle-line" as const,
diff --git a/src/client/src/components/SkipLinks/SkipLinks.tsx b/src/client/src/components/SkipLinks/SkipLinks.tsx
new file mode 100644
index 0000000..2ea700d
--- /dev/null
+++ b/src/client/src/components/SkipLinks/SkipLinks.tsx
@@ -0,0 +1,25 @@
+import { SkipLinks as DsfrSkipLinks } from "@codegouvfr/react-dsfr/SkipLinks";
+
+function SkipLinks() {
+ return (
+
+ );
+}
+
+export default SkipLinks;