-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Ajout des ressources utiles pour le simulateur RGCP
- Loading branch information
Showing
5 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
site/source/pages/assistants/pour-mon-entreprise/ReductionGeneraleCard.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { Trans, useTranslation } from 'react-i18next' | ||
|
||
import { Article } from '@/design-system/card' | ||
|
||
export function ReductionGeneraleCard() { | ||
const { t } = useTranslation() | ||
|
||
return ( | ||
<Article | ||
title={ | ||
<h3> | ||
<Trans i18nKey="gérer.ressources.réductionGénérale.title"> | ||
La réduction générale des cotisations | ||
</Trans> | ||
</h3> | ||
} | ||
ctaLabel={t( | ||
'gérer.ressources.réductionGénérale.cta', | ||
'Consulter le guide' | ||
)} | ||
aria-label={t( | ||
'gérer.ressources.réductionGénérale.aria-label', | ||
'Consulter le guide sur urssaf.fr, nouvelle fenêtre' | ||
)} | ||
href="https://www.urssaf.fr/accueil/employeur/beneficier-exonerations/reduction-generale-cotisation.html" | ||
> | ||
<Trans i18nKey="gérer.ressources.réductionGénérale.body"> | ||
Calcul, déclaration, règles... Consultez le guide de l'Urssaf sur la | ||
réduction générale des cotisations. | ||
</Trans> | ||
</Article> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters