diff --git a/src/components/Orchestrator/CustomPages/EndPage.tsx b/src/components/Orchestrator/CustomPages/EndPage.tsx
index 17cb2b37..c7ce7432 100644
--- a/src/components/Orchestrator/CustomPages/EndPage.tsx
+++ b/src/components/Orchestrator/CustomPages/EndPage.tsx
@@ -1,14 +1,16 @@
+import { fr } from "@codegouvfr/react-dsfr"
+
export function EndPage(props: { date: number | undefined }) {
const { date = Date.now() } = props
const formatedData = new Date(date).toLocaleString()
return (
- <>
+
L’Insee vous remercie pour votre collaboration à cette enquête.
Vos réponses ont été envoyées le {formatedData}.
Si vous avez indiqué une adresse électronique, un accusé de réception
vous sera envoyé automatiquement.{' '}
- >
+
)
}
diff --git a/src/components/Orchestrator/CustomPages/Validation.tsx b/src/components/Orchestrator/CustomPages/Validation.tsx
index 54677b81..4574d669 100644
--- a/src/components/Orchestrator/CustomPages/Validation.tsx
+++ b/src/components/Orchestrator/CustomPages/Validation.tsx
@@ -1,11 +1,13 @@
+import { fr } from "@codegouvfr/react-dsfr";
+
export function Validation() {
return (
- <>
+
Vous êtes arrivé à la fin du questionnaire
Après envoi, vous ne pourrez plus modifier vos réponses et vous pourrez
télécharger un accusé de réception.
- >
+
)
}
diff --git a/src/components/Orchestrator/CustomPages/Welcome.tsx b/src/components/Orchestrator/CustomPages/Welcome.tsx
index aed2b433..e1e37798 100644
--- a/src/components/Orchestrator/CustomPages/Welcome.tsx
+++ b/src/components/Orchestrator/CustomPages/Welcome.tsx
@@ -20,7 +20,7 @@ export function Welcome(props: {
return (
<>
-
+
Bienvenue sur le questionnaire de votre enquête
Cette enquête permet de connaître plus d'informations sur le domaine
diff --git a/src/components/Orchestrator/Navigation.tsx b/src/components/Orchestrator/Navigation.tsx
index 076c6f1d..529b1c08 100644
--- a/src/components/Orchestrator/Navigation.tsx
+++ b/src/components/Orchestrator/Navigation.tsx
@@ -63,8 +63,16 @@ export function Navigation(
return (
<>
{!isPreviousButtonDisplayed && (
-
+
+ {displaySequenceSteeper && (
+
+ )}
Précédent
- {displaySequenceSteeper && (
-
- )}
)}
-
-
- {pagination === 'sequence' && currentPage === 'lunaticPage' && (
+
+ {pagination === 'sequence' && currentPage === 'lunaticPage' && (
+
setIsLayoutExpanded((expanded) => !expanded)}
title="Étendre la vue"
/>
- )}
-
+
+ )}
{children}
{nextLabel}
+ {mode === 'visualize' && (
+
+ )}
- {mode === 'visualize' && (
-
- )}
>
)
}