From 3090dac59350c287d0ed77d797b93b6ecaa1654b Mon Sep 17 00:00:00 2001 From: Johan Girod Date: Tue, 1 Aug 2023 15:36:05 +0200 Subject: [PATCH] =?UTF-8?q?Ajoute=20le=20revenu=20avant=20imp=C3=B4t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modele-social/règles/dirigeant/dirigeant.yaml | 6 +- .../mon-entreprise/english/navigation.ts | 4 +- .../mon-entreprise/english/prerender.ts | 2 +- site/cypress/support/simulateur.js | 2 +- site/source/components/SchemeComparaison.tsx | 581 ------------------ site/source/locales/ui-en.yaml | 67 +- site/source/locales/ui-fr.yaml | 70 +-- site/source/pages/_landing/SearchOrCreate.tsx | 14 +- .../components/DetailsRowCards.tsx | 3 + .../components/Détails.tsx | 42 +- .../components/StatutChoice.tsx | 2 + .../simulateurs/comparaison-statuts/index.tsx | 22 +- 12 files changed, 81 insertions(+), 734 deletions(-) delete mode 100644 site/source/components/SchemeComparaison.tsx diff --git a/modele-social/règles/dirigeant/dirigeant.yaml b/modele-social/règles/dirigeant/dirigeant.yaml index 979712799..0ed03b0fb 100644 --- a/modele-social/règles/dirigeant/dirigeant.yaml +++ b/modele-social/règles/dirigeant/dirigeant.yaml @@ -122,14 +122,12 @@ dirigeant . exonérations . ACRE: - Les personnes créant une micro-entreprise dans un quartier prioritaire de la ville (QPPV) - - > *Historique*: + notes: | + #### Historique - Pour les auto-entreprise créées à partir du 1er janvier 2020, l'exonération est de nouveau soumise à condition. - - Pour les entreprises créées entre le 1er janvier 2019 et le 31 décembre 2019, la réduction est généralisée à tous les créateurs, sauf si vous avez déjà obtenu l'ACCRE dans les trois années précédentes - - Pour les entreprises créées avant le 1er janvier 2019, la l'exonération de cotisation s'appelait ACCRE était soumise à conditions et n'était pas automatique : il fallait en faire la demande. question: Bénéficiez-vous de l'ACRE ? applicable si: diff --git a/site/cypress/integration/mon-entreprise/english/navigation.ts b/site/cypress/integration/mon-entreprise/english/navigation.ts index 6a4a0eb3c..69a8a8f15 100644 --- a/site/cypress/integration/mon-entreprise/english/navigation.ts +++ b/site/cypress/integration/mon-entreprise/english/navigation.ts @@ -69,7 +69,7 @@ describe(`Navigation to income simulator using company name (${ }).as('search') cy.contains( - fr ? 'Rechercher votre entreprise ' : 'Search for your company ' + fr ? 'Rechercher votre entreprise ' : 'Find your company ' ).click() cy.get('input[data-test-id="company-search-input"]') @@ -96,7 +96,7 @@ describe(`Navigation to income simulator using company name (${ }).as('search') cy.contains( - fr ? 'Rechercher votre entreprise ' : 'Search for your company ' + fr ? 'Rechercher votre entreprise ' : 'Find your company ' ).click() cy.get('input[data-test-id="company-search-input"]') diff --git a/site/cypress/integration/mon-entreprise/english/prerender.ts b/site/cypress/integration/mon-entreprise/english/prerender.ts index d7b223ce7..39fda7494 100644 --- a/site/cypress/integration/mon-entreprise/english/prerender.ts +++ b/site/cypress/integration/mon-entreprise/english/prerender.ts @@ -86,7 +86,7 @@ describe('Test prerender', function () { { path: '', test: () => { - cy.contains('The official tools for entrepreneurs') + cy.contains('Official tools for entrepreneurs') cy.contains('Search for your company') cy.contains('label', 'Company name, SIREN or SI') diff --git a/site/cypress/support/simulateur.js b/site/cypress/support/simulateur.js index 1a2e2318f..b900c93af 100644 --- a/site/cypress/support/simulateur.js +++ b/site/cypress/support/simulateur.js @@ -59,7 +59,7 @@ export const runSimulateurTest = (simulateur) => { it('should allow to navigate to a documentation page', function () { cy.get(inputSelector).first().type('{selectall}2000') - cy.contains(fr ? 'Cotisations' : "Contributions").click() + cy.contains(fr ? 'Cotisations' : 'Contributions').click() cy.location().should((loc) => { expect(loc.pathname).to.match(/\/documentation\/.*\/cotisations.*/) }) diff --git a/site/source/components/SchemeComparaison.tsx b/site/source/components/SchemeComparaison.tsx deleted file mode 100644 index 086cb0de2..000000000 --- a/site/source/components/SchemeComparaison.tsx +++ /dev/null @@ -1,581 +0,0 @@ -import { useState } from 'react' -import { Trans, useTranslation } from 'react-i18next' -import styled, { css } from 'styled-components' - -import revenusSVG from '@/assets/images/revenus.svg' -import { Message } from '@/design-system' -import AnswerGroup from '@/design-system/answer-group' -import { Button } from '@/design-system/buttons' -import { Emoji } from '@/design-system/emoji' -import { Grid, Spacing } from '@/design-system/layout' -import { H2, H3 } from '@/design-system/typography/heading' -import { Intro } from '@/design-system/typography/paragraphs' -import { useSitePaths } from '@/sitePaths' - -type SchemeComparaisonProps = { - hideAutoEntrepreneur?: boolean - hideAssimiléSalarié?: boolean -} - -export default function SchemeComparaison({ - hideAutoEntrepreneur = false, - hideAssimiléSalarié = false, -}: SchemeComparaisonProps) { - const { absoluteSitePaths } = useSitePaths() - - const { t } = useTranslation() - const [showMore, setShowMore] = useState(false) - - return ( - <> - - {[ - !hideAssimiléSalarié && ( - - ), - - , - - !hideAutoEntrepreneur && ( - - ), - ].filter(Boolean)} - - - -

- Assimilé salarié - - - Le régime tout compris - - -

-

- {' '} - {hideAssimiléSalarié ? ( - Entreprise Individuelle - ) : ( - Indépendant - )} - - - La protection sociale à la carte - - -

-

- Auto-entrepreneur - - - Pour commencer sans risques - - -

- -

- - Statuts juridiques possibles - -

-
-
- - SAS, SASU ou SARL avec gérant minoritaire ou égalitaire - -
-
-
-
- {hideAssimiléSalarié ? ( - - EI ou EIRL - - ) : ( - - EI, EIRL, EURL ou SARL avec gérant majoritaire - - )} -
-
-
- - Auto-entreprise - -
- - -

Couverture accidents du travail

-
-
- - Oui - -
-
- Non -
- -

- Assurance maladie{' '} - (médicaments, soins, hospitalisations) -

-
Identique pour tous
-
- -

- Mutuelle santé - -

-
Obligatoire
-
Fortement conseillée
-
- - -

- Indemnités journalières (en cas d'arrêt maladie) -

-
-
++
-
++
-
+
- -

Retraite

-
-
+++
-
++
-
+
- - {showMore ? ( - <> - -

ACRE

-
- 1 an (automatique et inconditionnelle) -
-
- Entre 3 et 4 trimestres{' '} - (sous conditions d'éligibilité) -
-
- -

Déduction des charges

-
- Oui (régime fiscal du réel) -
-
- Non - - (mais abattement forfaitaire pour le calcul de l'impôt sur le - revenu) - -
-
- - -

Paiement des cotisations

-
Mensuel
-
- Provision mensuelle ou trimestrielle - - (avec régularisation après coup en fonction du revenu réel) - -
-
Mensuel ou trimestriel
-
- -

- Contrats prévoyance et retraite facultatives déductibles -

-
- Oui (sous certaines conditions) -
-
- Oui (Loi Madelin) -
-
-
- Non -
- -

Paiement de cotisations minimales

-
-
- Non -
-
- Oui -
-
- Non -
- -

- Revenu minimum pour l'ouverture des droits aux prestations -

-
Oui
-
- Non (cotisations minimales obligatoires) -
-
Oui
-
- {!hideAutoEntrepreneur && ( - -

Plafond de chiffre d'affaires

-
- Non -
-
- Oui - - (72 600 € en services / 176 200 € en vente de biens, - restauration ou hébergement) - -
-
- )} - -

- Gestion comptable, sociale, juridique... -

-
- Accompagnement fortement conseillé - - (expert comptable, comptable, centre de gestion agrée...) - -
- -
- Simplifiée{' '} - (peut être gérée par l'auto-entrepreneur) -
-
- - ) : ( - -
- -
-
- )} -
- - - - - - - - - -

Comparateur de statuts

- - Découvrez les différence en terme de revenus, pensions de retraite - et indemnités maladie à partir d'une estimation de votre futurs - chiffre d'affaires et charges de fonctionnement. - - - -
-
-
- - ) -} - -type StyledGridProps = { - hideAssimiléSalarié?: boolean - hideAutoEntrepreneur?: boolean -} - -export const StyledGrid = styled.div` - display: grid; - font-family: ${({ theme }) => theme.fonts.main}; - justify-items: stretch; - justify-content: center; - - ${(props: StyledGridProps) => - css` - grid-template-columns: - [row-legend] minmax(auto, 100%) - [assimilé-salarié] ${props.hideAssimiléSalarié - ? '0px' - : 'minmax(20%, 20rem)'} - [indépendant] minmax(20%, 20rem) - [auto-entrepreneur] ${props.hideAutoEntrepreneur - ? '0px' - : 'minmax(20%, 20rem)'} - [end]; - `} - & > * { - width: 100%; - border-bottom: 1px solid ${({ theme }) => theme.colors.bases.primary[100]}; - padding: 0.6rem 1.2rem; - border-right: 1px solid ${({ theme }) => theme.colors.bases.primary[100]}; - display: flex; - flex-direction: column; - align-items: center; - justify-content: space-evenly; - text-align: center; - flex-wrap: wrap; - } - - & > h2 { - margin: 0; - border: none; - align-self: stretch; - } - - & > h2 img { - height: 1.6rem !important; - width: 1.6rem !important; - } - & > .legend { - align-items: flex-end; - grid-column: row-legend; - text-align: right; - } - - & > .AS-et-indep { - grid-column: assimilé-salarié / auto-entrepreneur; - } - & > .AS { - ${(props) => - props.hideAssimiléSalarié && - css` - display: none; - `} - grid-column: assimilé-salarié; - min-width: 11rem; - } - & > .indep { - grid-column: indépendant; - } - & > .auto { - grid-column: auto-entrepreneur; - ${(props) => - props.hideAutoEntrepreneur && - css` - display: none; - `} - border-right: none; - min-width: 14rem; - } - & > .all { - border-right: none; - border-bottom: none; - grid-column: row-legend / end; - } - & > .all.colored { - background-color: ${({ theme }) => theme.colors.bases.primary[100]}; - } - - & > .indep-et-auto { - grid-column: indépendant / end; - border-right: none; - } - & > .AS-indep-et-auto { - grid-column: assimilé-salarié / end; - border-right: none; - } - - &.hideAutoEntrepreneur > .auto { - display: none; - } - &.hideAutoEntrepreneur > .indep-et-auto { - border-right: 1px solid ${({ theme }) => theme.colors.bases.primary[100]}; - } - - &.hideAssimiléSalarié > .AS { - display: none; - } - - & > .green { - font-weight: bold; - color: green; - background-color: inherit; - } - - & > .red { - font-weight: bold; - color: red; - background-color: inherit; - } - - & > .no-border { - border: none; - } - & .button { - align-self: stretch; - } - - @media (max-width: 800px) { - & > * { - padding: 0.6rem; - } - } - @media (max-width: 600px) { - & { - display: block; - padding: 0 0.6rem; - } - - & h2 { - flex-direction: column; - } - & small { - margin-left: 0.2rem; - } - - & > *::before { - flex: 1; - text-align: left; - flex-shrink: 0; - white-space: nowrap; - user-select: text; - font-weight: normal; - } - & > :not(.button)::before { - color: ${({ theme }) => theme.colors.bases.primary[700]} !important; - background-color: inherit; - opacity: 0.6; - } - & > .AS::before { - content: 'Assimilé-salarié :'; - } - & > .indep::before, - &.hideAutoEntrepreneur > .indep-et-auto::before { - content: 'Indépendant :'; - } - - &.hideAssimiléSalarié > .AS-et-indep::before, - &.hideAssimiléSalarié > .indep::before { - content: 'Entreprise individuelle :'; - } - - & > .auto::before { - content: 'Auto-entrepreneur :'; - } - & > .indep-et-auto::before { - content: 'Indépendant / auto-entrepreneur :'; - } - & > .AS-et-indep::before { - content: 'Assimilé salarié / indépendant '; - } - & > h2::before { - display: none; - } - & > h2.AS::after, - &:not(.hideAutoEntrepreneur) > h2.indep::after { - display: block; - font-size: 1rem; - margin-top: 1rem; - content: 'vs'; - } - & > .legend { - justify-content: flex-start; - align-items: baseline; - text-align: left; - } - & > * { - border: none; - flex-direction: row; - text-align: right; - justify-content: right; - } - & > :not(.all):not(.button) { - padding-left: 0; - } - & > .all { - margin: 0 -0.6rem; - text-align: center; - justify-content: center; - margin-top: 2rem; - } - & > .no-border > .button { - flex: 1; - } - & > .no-border::before { - display: none; - } - } - @media (min-width: 600px) { - & > h3 { - margin: 0; - font-weight: normal; - - font-size: 1rem; - } - } -` diff --git a/site/source/locales/ui-en.yaml b/site/source/locales/ui-en.yaml index 17eaf0a3a..042f26289 100644 --- a/site/source/locales/ui-en.yaml +++ b/site/source/locales/ui-en.yaml @@ -9,7 +9,6 @@ <0>Activité mixte: <0>Mixed activity <0>Impôt sur le revenu (IR): <0>Income tax (IR) <0>Impôt sur les sociétés (IS): <0>Corporate income tax (IS) -<0>Oui: <0>Yes <0>Versement libératoire de l'impôt sur le revenu: <0>Payment in full discharge of income tax API REST de simulation: Simulation REST API "API REST, en savoir plus sur l'API REST": API REST, more about API REST @@ -25,14 +24,13 @@ Aller au contenu principal: Go to main content Aller directement au pied de page: Go directly to footer Annuler: Cancel Arrêt maladie: Sick leave -Assimilé salarié: Assimilated employee Assistants à la déclaration de revenu 2022 des indépendants: Assistants for the 2022 tax return for the self-employed "Attention, information importante": Important information "Attention, vos données sauvegardées seront supprimées de manière définitive.": Please note that your saved data will be permanently deleted. Aucun: No Aucun résultat: No results -Auto-entrepreneur: Auto-entrepreneur Autres outils: Other tools +Avec <2><0> de cotisations sociales: With <2><0> in social security contributions Avec ACRE: With ACRE Avec chômage partiel: With short-time working Boite de dialogue: Dialog box @@ -99,7 +97,6 @@ En savoir plus sur impots: English version of the website enabled.: English version of the website enabled. Enregistrer et continuer: Save and continue Enregistrer et voir le résultat: Save and view results -Entreprise Individuelle: Sole proprietorship Entreprise créée le <2><0> et domiciliée à <6><0>: Company founded on <2><0> and domiciled at <6><0> Envoyer: Send Envoyer un courriel à contact@mon-entreprise: @@ -126,7 +123,6 @@ Habituellement: Usually Impôt: Tax Impôt au barème: Tax scale Impôts: Taxes -Indépendant: Indépendant Information: Information "Insérer dans le champ la valeur du {{text}}": Insert the value of the {{text}} International: International @@ -244,7 +240,6 @@ Recherche sur le site: Site search Rechercher: Search Rechercher un simulateur ou une règle: Search for a simulator or a rule Rechercher une règle dans la documentation: Search for a rule in the documentation -Rechercher votre entreprise: Find your company "Rechercher, ouvrir la boite de dialogue pour entrer vos termes de recherche.": Search, open the dialog box to enter your search terms. Renseigner une adresse e-mail (au format nom@domaine: com) pour recevoir une réponse: Enter an e-mail address (in nom@domaine.com format) to receive a reply. @@ -260,7 +255,7 @@ Revenu après impôt: After-tax income Revenu avant impôt: Income before tax Revenu disponible: Disposable income Revenu du dirigeant par statut: Executive income by status -Revenus après impôts: Income after tax +Revenu net mensuel après impôts: Net monthly income after tax Règles de calculs: Calculation rules Régime d'imposition: Taxation system "Régime social des <1>{régimeSocial}s": Régime social des <1>{régimeSocial}s @@ -286,6 +281,7 @@ Simulateurs: Simulators Simulateurs et Assistants: Simulators and Assistants Simulation en cours: Simulation in progress Situation personnelle: Personal situation +Soit <2><0> avant impôts: Or <2><0> before tax Statistiques: Statistics Statut du conjoint: Spouse's status Suivant: Next @@ -540,63 +536,12 @@ codeApe: common: useful-resources: Useful resources comparaisonRégimes: - ACRE: <0>ACRE<1>1 year <1>(automatic and unconditional)<2>Between 3 - and 4 quarters (subject to <2> eligibility) - AS: - tagline: The all-inclusive diet - AT: <0>Workers' compensation coverage - assuranceMaladie: <0>Health insurance <2>(drugs, care, - hospitalization)<1>Identical for all - auto: - tagline: A risk-free start - choix: - AS: - aria-label: Assimilated employee, select option and go to next step - button: Assimilé salarié - EI: - aria-label: Sole proprietorship, select option and go to next step - button: Sole proprietorship - auto: - aria-label: Auto-entrepreneur, select option and go to next step - button: Self-employed contractor - indep: - aria-label: Independent, select option and go to next step - button: Independent - comparaisonDétaillée: <0><0>View more information - complémentaireDeductible: <0>Deductible optional provident and pension - plans<1>Yes <1>(under certain conditions)<2>Yes <1>(Madelin - law) - comptabilité: <0>Accounting, social and legal management...<1>Accompaniment - strongly recommended<1>(chartered accountant, accountant, approved - management center...)<2>Simplified <2>(can be managed by the - auto-entrepreneur) - cotisationMinimale: <0>Payment of minimum contributions - cotisations: <0>Payment of contributions<1>Monthly<2>Monthly or - quarterly<1>(with subsequent adjustment based on actual - income)<3>Monthly or quarterly description: When you set up your company, the choice of legal status will <2>determine which social security scheme the manager is affiliated to. There are <4>three different types, each with its own advantages and disadvantages. Use this comparison to find the one that suits you best. - déduction: <0>Deduction of expenses<1>Yes ( <1>actual tax - system)<2>No<1>(but flat-rate allowance for calculating income - tax) - indemnités: <0>Daily benefits <1>(in the event of sick leave) - indep: - tagline: Social protection à la carte - mutuelle: <0>Health insurance<1><1>Mandatory<2>Highly recommended - plafondCA: <0>Sales ceiling<1><0>No<2><0>Yes<1>(€72,600 in - services / €176,200 in sales of goods, catering or accommodation) - retraite: <0>Retirement - seuil: <0>Minimum income to qualify for benefits<1>Yes<2>No - <1>(compulsory minimum contributions)<3>Yes - status: - AS: SAS, SASU or SARL with minority or equal management - auto: Auto-entreprise - indep: - "1": EI, EIRL, EURL or SARL with majority manager - "2": EI or EIRL - legend: Possible legal forms + notif: <0><0>Find out which status is <2>best for your business with the + <5>new status selection wizard! components: feedback: form: @@ -754,6 +699,8 @@ landing: outils: <0>Tools at your disposal<1>We provide you with wizards and simulators to help you manage your business, anticipate levies and plan your cash flow accordingly. + searchcompany: <0>Find your company <1>To access our simulators most + relevant to your business subtitle: Simulators and wizards to help you develop your business, from legal status to hiring. title: Official tools for entrepreneurs diff --git a/site/source/locales/ui-fr.yaml b/site/source/locales/ui-fr.yaml index 209d4fb3c..ab0c53edd 100644 --- a/site/source/locales/ui-fr.yaml +++ b/site/source/locales/ui-fr.yaml @@ -9,7 +9,6 @@ <0>Activité mixte: <0>Activité mixte <0>Impôt sur le revenu (IR): <0>Impôt sur le revenu (IR) <0>Impôt sur les sociétés (IS): <0>Impôt sur les sociétés (IS) -<0>Oui: <0>Oui <0>Versement libératoire de l'impôt sur le revenu: <0>Versement libératoire de l'impôt sur le revenu API REST de simulation: API REST de simulation "API REST, en savoir plus sur l'API REST": API REST, en savoir plus sur l'API REST @@ -25,14 +24,13 @@ Aller au contenu principal: Aller au contenu principal Aller directement au pied de page: Aller directement au pied de page Annuler: Annuler Arrêt maladie: Arrêt maladie -Assimilé salarié: Assimilé salarié Assistants à la déclaration de revenu 2022 des indépendants: Assistants à la déclaration de revenu 2022 des indépendants "Attention, information importante": Attention, information importante "Attention, vos données sauvegardées seront supprimées de manière définitive.": Attention, vos données sauvegardées seront supprimées de manière définitive. Aucun: Aucun Aucun résultat: Aucun résultat -Auto-entrepreneur: Auto-entrepreneur Autres outils: Autres outils +Avec <2><0> de cotisations sociales: Avec <2><0> de cotisations sociales Avec ACRE: Avec ACRE Avec chômage partiel: Avec chômage partiel Boite de dialogue: Boite de dialogue @@ -99,7 +97,6 @@ En savoir plus sur impots: English version of the website enabled.: English version of the website enabled. Enregistrer et continuer: Enregistrer et continuer Enregistrer et voir le résultat: Enregistrer et voir le résultat -Entreprise Individuelle: Entreprise Individuelle Entreprise créée le <2><0> et domiciliée à <6><0>: Entreprise créée le <2><0> et domiciliée à <6><0> Envoyer: Envoyer Envoyer un courriel à contact@mon-entreprise: @@ -129,7 +126,6 @@ Habituellement: Habituellement Impôt: Impôt Impôt au barème: Impôt au barème Impôts: Impôts -Indépendant: Indépendant Information: Information "Insérer dans le champ la valeur du {{text}}": Insérer dans le champ la valeur du {{text}} International: International @@ -252,7 +248,6 @@ Recherche sur le site: Recherche sur le site Rechercher: Rechercher Rechercher un simulateur ou une règle: Rechercher un simulateur ou une règle Rechercher une règle dans la documentation: Rechercher une règle dans la documentation -Rechercher votre entreprise: Rechercher votre entreprise "Rechercher, ouvrir la boite de dialogue pour entrer vos termes de recherche.": Rechercher, ouvrir la boite de dialogue pour entrer vos termes de recherche. Renseigner une adresse e-mail (au format nom@domaine: com) pour recevoir une réponse: Renseigner une adresse e-mail (au format @@ -269,7 +264,7 @@ Revenu après impôt: Revenu après impôt Revenu avant impôt: Revenu avant impôt Revenu disponible: Revenu disponible Revenu du dirigeant par statut: Revenu du dirigeant par statut -Revenus après impôts: Revenus après impôts +Revenu net mensuel après impôts: Revenu net mensuel après impôts Règles de calculs: Règles de calculs Régime d'imposition: Régime d'imposition "Régime social des <1>{régimeSocial}s": Régime social des <1>{régimeSocial}s @@ -296,6 +291,7 @@ Simulateurs: Simulateurs Simulateurs et Assistants: Simulateurs et Assistants Simulation en cours: Simulation en cours Situation personnelle: Situation personnelle +Soit <2><0> avant impôts: Soit <2><0> avant impôts Statistiques: Statistiques Statut du conjoint: Statut du conjoint Suivant: Suivant @@ -568,66 +564,12 @@ codeApe: common: useful-resources: Ressources utiles comparaisonRégimes: - ACRE: <0>ACRE<1>1 an <1>(automatique et inconditionnelle)<2>Entre 3 - et 4 trimestres <2>(sous conditions d'éligibilité) - AS: - tagline: Le régime tout compris - AT: <0>Couverture accidents du travail - assuranceMaladie: <0>Assurance maladie <2>(médicaments, soins, - hospitalisations)<1>Identique pour tous - auto: - tagline: Pour commencer sans risques - choix: - AS: - aria-label: Assimilé salarié, sélectionner l'option et passer à l'étape suivante - button: Assimilé salarié - EI: - aria-label: Entreprise individuelle, sélectionner l'option et passer à l'étape - suivante - button: Entreprise individuelle - auto: - aria-label: Auto-entrepreneur, sélectionner l'option et passer à l'étape suivante - button: Auto-entrepreneur - indep: - aria-label: Indépendant, sélectionner l'option et passer à l'étape suivante - button: Indépendant - comparaisonDétaillée: <0><0>Afficher plus d'informations - complémentaireDeductible: <0>Contrats prévoyance et retraite facultatives - déductibles<1>Oui <1>(sous certaines conditions)<2>Oui <1>(Loi - Madelin) - comptabilité: <0>Gestion comptable, sociale, juridique...<1>Accompagnement - fortement conseillé<1>(expert comptable, comptable, centre de gestion - agrée...)<2>Simplifiée <2>(peut être gérée par - l'auto-entrepreneur) - cotisationMinimale: <0>Paiement de cotisations minimales - cotisations: <0>Paiement des cotisations<1>Mensuel<2>Provision mensuelle - ou trimestrielle<1>(avec régularisation après coup en fonction du revenu - réel)<3>Mensuel ou trimestriel description: Lorsque vous créez votre entreprise, le choix du statut juridique va <2>déterminer à quel régime social le dirigeant est affilié. Il en existe <4>trois différents, avec chacun ses avantages et inconvénients. Avec ce comparatif, trouvez celui qui vous correspond le mieux. - déduction: <0>Déduction des charges<1>Oui <1>(régime fiscal du - réel)<2>Non<1>(mais abattement forfaitaire pour le calcul de l'impôt - sur le revenu) - indemnités: <0>Indemnités journalières <1>(en cas d'arrêt maladie) - indep: - tagline: La protection sociale à la carte - mutuelle: <0>Mutuelle santé<1><1>Obligatoire<2>Fortement conseillée - plafondCA: <0>Plafond de chiffre - d'affaires<1><0>Non<2><0>Oui<1>(72 600 € en services / 176 - 200 € en vente de biens, restauration ou hébergement) - retraite: <0>Retraite - seuil: <0>Revenu minimum pour l'ouverture des droits aux - prestations<1>Oui<2>Non <1>(cotisations minimales - obligatoires)<3>Oui - status: - AS: SAS, SASU ou SARL avec gérant minoritaire ou égalitaire - auto: Auto-entreprise - indep: - "1": EI, EIRL, EURL ou SARL avec gérant majoritaire - "2": EI ou EIRL - legend: Statuts juridiques possibles + notif: <0><0>Découvrez quel statut est le <2>plus adapté pour votre activité + grâce au <5>nouvel assistant au choix du statut ! components: feedback: form: @@ -794,6 +736,8 @@ landing: des assistants et simulateurs pour vous aider à la gestion de votre entreprise, anticiper les prélèvements et planifier votre trésorerie en conséquence. + searchcompany: <0>Rechercher votre entreprise <1>Pour accéder à nos + simulateurs les plus pertinents pour votre activité subtitle: Les simulateurs et assistants pour développer votre activité, du statut juridique à l'embauche. title: L'assistant officiel des entrepreneurs diff --git a/site/source/pages/_landing/SearchOrCreate.tsx b/site/source/pages/_landing/SearchOrCreate.tsx index 0fab3a35b..c07271b80 100644 --- a/site/source/pages/_landing/SearchOrCreate.tsx +++ b/site/source/pages/_landing/SearchOrCreate.tsx @@ -81,13 +81,13 @@ export default function SearchOrCreate() { ) : ( <> -

- Rechercher votre entreprise{' '} -

- - Pour accéder à nos simulateurs les plus pertinents pour votre - activité - + +

Rechercher votre entreprise

+ + Pour accéder à nos simulateurs les plus pertinents pour votre + activité + +
{label && ' '} {label && label} diff --git a/site/source/pages/simulateurs/comparaison-statuts/components/Détails.tsx b/site/source/pages/simulateurs/comparaison-statuts/components/Détails.tsx index a9430440d..856fbdefb 100644 --- a/site/source/pages/simulateurs/comparaison-statuts/components/Détails.tsx +++ b/site/source/pages/simulateurs/comparaison-statuts/components/Détails.tsx @@ -11,6 +11,7 @@ import { Container } from '@/design-system/layout' import { Strong } from '@/design-system/typography' import { H2, H4 } from '@/design-system/typography/heading' import { StyledLink } from '@/design-system/typography/link' +import { Li, Ul } from '@/design-system/typography/list' import { Body } from '@/design-system/typography/paragraphs' import { EngineComparison } from './Comparateur' @@ -49,7 +50,7 @@ const Détails = ({ namedEngines }: { namedEngines: EngineComparison }) => { hasChildItems={false} > - Revenus après impôts + Revenu net mensuel après impôts { - - Vos revenus après déduction de l'impôt, en prenant compte de l'ACRE - si vous avez activé l'option. - ( +
    +
  • + + Soit{' '} + + + {' '} + avant impôts + +
  • {' '} +
  • + + Avec{' '} + + + {' '} + de cotisations sociales + +
  • +
+ )} warning={(engine) => ( diff --git a/site/source/pages/simulateurs/comparaison-statuts/index.tsx b/site/source/pages/simulateurs/comparaison-statuts/index.tsx index 6de842023..0a14d71c8 100644 --- a/site/source/pages/simulateurs/comparaison-statuts/index.tsx +++ b/site/source/pages/simulateurs/comparaison-statuts/index.tsx @@ -67,16 +67,18 @@ function ComparateurStatutsUI() { return ( <> - } border={false}> - - Découvrez quel statut est le{' '} - plus adapté pour votre activité grâce au{' '} - - nouvel assistant au choix du statut - {' '} - ! - - + + } border={false}> + + Découvrez quel statut est le{' '} + plus adapté pour votre activité grâce au{' '} + + nouvel assistant au choix du statut + {' '} + ! + + + Lorsque vous créez votre entreprise, le choix du statut juridique va{' '}