diff --git a/source/sites/mon-entreprise.fr/pages/SocialSecurity/SchemeSelection.js b/source/sites/mon-entreprise.fr/pages/SocialSecurity/SchemeSelection.js index 84c81d85d..36a593ea1 100644 --- a/source/sites/mon-entreprise.fr/pages/SocialSecurity/SchemeSelection.js +++ b/source/sites/mon-entreprise.fr/pages/SocialSecurity/SchemeSelection.js @@ -11,73 +11,65 @@ import animate from 'Ui/animate' const SchemeChoice = compose( withTranslation(), withSitePaths -)( - ({ sitePaths, t }) => - console.log(sitePaths) || ( - - - - {t('selectionRégime.page.titre', 'Selection du régime')} - - -

- Quel régime souhaitez-vous explorer ? -

-

- - {emoji('☂')} - - Assimilé salarié - - ( - - SAS, SASU ou SARL avec gérant minoritaire - - ) - - - - - {emoji('👩‍🔧')} - - Indépendant - - ( - - EI, EIRL, EURL ou SARL avec gérant majoritaire - - ) - - - - - {emoji('🚶‍♂️')} - Auto-entrepreneur - -

-

- - Vous ne savez pas lequel choisir ? - -

-

- - Comparer les régimes - -

-
- ) -) +)(({ sitePaths, t }) => ( + + + {t('selectionRégime.page.titre', 'Selection du régime')} + +

+ Quel régime souhaitez-vous explorer ? +

+

+ + {emoji('☂')} + + Assimilé salarié + + ( + + SAS, SASU ou SARL avec gérant minoritaire + + ) + + + + + {emoji('👩‍🔧')} + + Indépendant + + ( + + EI, EIRL, EURL ou SARL avec gérant majoritaire + + ) + + + + + {emoji('🚶‍♂️')} + Auto-entrepreneur + +

+

+ + Vous ne savez pas lequel choisir ? + +

+

+ + Comparer les régimes + +

+
+)) export default SchemeChoice