diff --git a/components/home/HomeFeatureDisplay/index.tsx b/components/home/HomeFeatureDisplay/index.tsx index 572f3636..91444603 100644 --- a/components/home/HomeFeatureDisplay/index.tsx +++ b/components/home/HomeFeatureDisplay/index.tsx @@ -26,7 +26,7 @@ const HomeFeatureDisplay = (props: Feature) => { classes.grid )} > -
+
{props.icon}

{props.title}

@@ -58,12 +58,12 @@ const useStyles = tss .withParams<{ imagePosition: string }>() .create(({ imagePosition }) => ({ outerContainer: { - position: 'relative' + position: 'relative', + ...fr.spacing('margin', { + topBottom: '32v' + }) }, container: { - ...fr.spacing('margin', { - topBottom: '16v' - }), ...fr.spacing('padding', { topBottom: '16v' }), diff --git a/components/home/HomeHeader.tsx b/components/home/HomeHeader.tsx index 0fa20aeb..3df2a5e3 100644 --- a/components/home/HomeHeader.tsx +++ b/components/home/HomeHeader.tsx @@ -10,9 +10,14 @@ const HomeHeader = () => {
-
+

Comment suivre la satisfaction de vos usagers ? @@ -25,7 +30,7 @@ const HomeHeader = () => {

diff --git a/components/home/HomePills/index.tsx b/components/home/HomePills/index.tsx index deaf3c80..5a58580f 100644 --- a/components/home/HomePills/index.tsx +++ b/components/home/HomePills/index.tsx @@ -20,7 +20,8 @@ const HomePills = (props: HomePillsProps) => { 'fr-grid-row', 'fr-grid-row--gutters', 'fr-grid-row--center', - 'fr-py-12w' + 'fr-py-12w', + 'fr-px-10v' )} > {props.pills.map((pill, index) => ( diff --git a/components/home/HomeQuestions/index.tsx b/components/home/HomeQuestions/index.tsx index acb75b8d..66ee0b42 100644 --- a/components/home/HomeQuestions/index.tsx +++ b/components/home/HomeQuestions/index.tsx @@ -16,19 +16,23 @@ const HomeQuestions = (props: HomeQuestionProps) => { return (
-

Foire aux questions

-
- {props.questions.map((question, index) => { - return ( - - {question.answer} - - ); - })} +
+
+

Foire aux questions

+
+ {props.questions.map((question, index) => { + return ( + + {question.answer} + + ); + })} +
+
); diff --git a/components/home/HomeReferences/index.tsx b/components/home/HomeReferences/index.tsx index 2f11f5cc..c17b13d8 100644 --- a/components/home/HomeReferences/index.tsx +++ b/components/home/HomeReferences/index.tsx @@ -18,42 +18,52 @@ const HomeReferences = (props: HomeReferencesProps) => { return (
-

Elles recommandent

- {props.references.map((reference, index) => ( -
-
- {reference.author} -
-
-
- -
{reference.description}
-
-

- {reference.author} -

-

- {reference.job_title} -

+
+
+

Elles recommandent

+ {props.references.map((reference, index) => ( +
+
+ {reference.author} +
+
+
+ +
{reference.description}
+
+

+ {reference.author} +

+

+ {reference.job_title} +

+
+
-
+ ))}
- ))} +
); }; diff --git a/components/home/HomeStepper/index.tsx b/components/home/HomeStepper/index.tsx index 71cb4d69..7feffa01 100644 --- a/components/home/HomeStepper/index.tsx +++ b/components/home/HomeStepper/index.tsx @@ -32,30 +32,41 @@ const HomeStepper = () => { return (
-

Commencez à receuillir des avis en 4 étapes simples :

-
- {steps.map(step => ( -
-
-
-

{step.number}

+
+
+

Commencez à receuillir des avis en 4 étapes simples :

+
+ {steps.map(step => ( +
+
+
+

{step.number}

+
+
{step.title}
+
-
{step.title}
-
+ ))}
- ))} -
-
- +
+ +
+
);