🎨 ajoute un padding à connaitre vos démarches
parent
4923da742c
commit
d98f20bb4b
|
@ -1,24 +1,21 @@
|
|||
/* @flow */
|
||||
import {
|
||||
checkCompanyCreationItem,
|
||||
initializeCompanyCreationChecklist
|
||||
} from 'Actions/companyCreationChecklistActions'
|
||||
import { goToCompanyStatusChoice } from 'Actions/companyStatusActions'
|
||||
import { React, T } from 'Components'
|
||||
import Route404 from 'Components/Route404'
|
||||
import Scroll from 'Components/utils/Scroll'
|
||||
import withLanguage from 'Components/utils/withLanguage'
|
||||
import withSitePaths from 'Components/utils/withSitePaths'
|
||||
import { compose } from 'ramda'
|
||||
import emoji from 'react-easy-emoji'
|
||||
import { Helmet } from 'react-helmet'
|
||||
import { withTranslation } from 'react-i18next'
|
||||
import { connect } from 'react-redux'
|
||||
import { Link } from 'react-router-dom'
|
||||
import * as Animate from 'Ui/animate'
|
||||
import { CheckItem, Checklist } from 'Ui/Checklist'
|
||||
import { LANDING_LEGAL_STATUS_LIST } from '../../sitePaths'
|
||||
import StatusDescription from './StatusDescription'
|
||||
import { checkCompanyCreationItem, initializeCompanyCreationChecklist } from 'Actions/companyCreationChecklistActions';
|
||||
import { goToCompanyStatusChoice } from 'Actions/companyStatusActions';
|
||||
import { React, T } from 'Components';
|
||||
import Route404 from 'Components/Route404';
|
||||
import Scroll from 'Components/utils/Scroll';
|
||||
import withLanguage from 'Components/utils/withLanguage';
|
||||
import withSitePaths from 'Components/utils/withSitePaths';
|
||||
import { compose } from 'ramda';
|
||||
import emoji from 'react-easy-emoji';
|
||||
import { Helmet } from 'react-helmet';
|
||||
import { withTranslation } from 'react-i18next';
|
||||
import { connect } from 'react-redux';
|
||||
import { Link } from 'react-router-dom';
|
||||
import * as Animate from 'Ui/animate';
|
||||
import { CheckItem, Checklist } from 'Ui/Checklist';
|
||||
import { LANDING_LEGAL_STATUS_LIST } from '../../sitePaths';
|
||||
import StatusDescription from './StatusDescription';
|
||||
|
||||
import type { Match } from 'react-router'
|
||||
import type { TFunction } from 'react-i18next'
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
import { React, T } from 'Components'
|
||||
import SalaryExplanation from 'Components/SalaryExplanation'
|
||||
import Simulation from 'Components/Simulation'
|
||||
import salariéConfig from 'Components/simulationConfigs/salarié.yaml'
|
||||
import withSimulationConfig from 'Components/simulationConfigs/withSimulationConfig'
|
||||
import TargetSelection from 'Components/TargetSelection'
|
||||
import withSitePaths from 'Components/utils/withSitePaths'
|
||||
import { compose } from 'ramda'
|
||||
import { Helmet } from 'react-helmet'
|
||||
import { withTranslation } from 'react-i18next'
|
||||
import { Link } from 'react-router-dom'
|
||||
import { React, T } from 'Components';
|
||||
import SalaryExplanation from 'Components/SalaryExplanation';
|
||||
import Simulation from 'Components/Simulation';
|
||||
import salariéConfig from 'Components/simulationConfigs/salarié.yaml';
|
||||
import withSimulationConfig from 'Components/simulationConfigs/withSimulationConfig';
|
||||
import TargetSelection from 'Components/TargetSelection';
|
||||
import withSitePaths from 'Components/utils/withSitePaths';
|
||||
import { compose } from 'ramda';
|
||||
import { Helmet } from 'react-helmet';
|
||||
import { withTranslation } from 'react-i18next';
|
||||
import { Link } from 'react-router-dom';
|
||||
|
||||
export let SalarySimulation = withSitePaths(({ sitePaths }) => (
|
||||
<Simulation
|
||||
|
@ -19,11 +19,11 @@ export let SalarySimulation = withSitePaths(({ sitePaths }) => (
|
|||
Vous pouvez maintenant concrétiser votre projet d'embauche.
|
||||
</T>
|
||||
{sitePaths.démarcheEmbauche && (
|
||||
<div style={{ textAlign: 'center' }}>
|
||||
<Link className="ui__ button" to={sitePaths.démarcheEmbauche.index}>
|
||||
<p style={{ textAlign: 'center' }}>
|
||||
<Link className="ui__ plain button" to={sitePaths.démarcheEmbauche.index}>
|
||||
<T k="simulation-end.cta">Connaître les démarches</T>
|
||||
</Link>
|
||||
</div>
|
||||
</p>
|
||||
)}
|
||||
</>
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue