-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(PC-33786) feat(accessibility): add 2025 accessibility action plan
- Loading branch information
1 parent
74dfc5a
commit ecd109f
Showing
2 changed files
with
61 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
58 changes: 58 additions & 0 deletions
58
src/features/profile/pages/Accessibility/AccessibilityActionPlan2025.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,58 @@ | ||
import React from 'react' | ||
|
||
import { | ||
ActionPlanStatus, | ||
ActionPlanTag, | ||
} from 'features/profile/components/Buttons/ActionPlanTag/ActionPlanTag' | ||
import { BulletListItem } from 'ui/components/BulletListItem' | ||
import { VerticalUl } from 'ui/components/Ul' | ||
import { Spacer, TypoDS } from 'ui/theme' | ||
import { getHeadingAttrs } from 'ui/theme/typographyAttrs/getHeadingAttrs' | ||
|
||
export const AccessibilityActionPlan2025 = () => ( | ||
<React.Fragment> | ||
<TypoDS.Title4 {...getHeadingAttrs(2)}>Plan annuel 2025</TypoDS.Title4> | ||
<Spacer.Column numberOfSpaces={6} /> | ||
<VerticalUl> | ||
<BulletListItem text="Réaliser un audit interne sur les parcours clés de la version web"> | ||
<ActionPlanTag status={ActionPlanStatus.TODO} /> | ||
</BulletListItem> | ||
|
||
<BulletListItem text="Valider la certification “Développer des sites web accessibles” (tous les développeurs front-end)"> | ||
<ActionPlanTag status={ActionPlanStatus.TODO} /> | ||
</BulletListItem> | ||
|
||
<BulletListItem text="Former un développeur à l’audit d’accessibilité numérique des applications mobiles"> | ||
<ActionPlanTag status={ActionPlanStatus.TODO} /> | ||
</BulletListItem> | ||
|
||
<BulletListItem text="Mettre en place un process de vérification d’accessibilité RGAA pour les nouvelles fonctionnalités"> | ||
<ActionPlanTag status={ActionPlanStatus.TODO} /> | ||
</BulletListItem> | ||
|
||
<BulletListItem text="Revoir l’accessibilité de tous les mails transactionnels"> | ||
<ActionPlanTag status={ActionPlanStatus.TODO} /> | ||
</BulletListItem> | ||
|
||
<BulletListItem text="Atteindre 100% d’accessibilité de la version web sur les parcours clés"> | ||
<ActionPlanTag status={ActionPlanStatus.TODO} /> | ||
</BulletListItem> | ||
|
||
<BulletListItem text="Informer des modalités de mises en accessibilité des offres"> | ||
<ActionPlanTag status={ActionPlanStatus.TODO} /> | ||
</BulletListItem> | ||
|
||
<BulletListItem text="Renforcer la visibilité sur le pass d’offres accessibles auprès des publics concernés (partenariats et inscriptions d’AC spécialisées…)"> | ||
<ActionPlanTag status={ActionPlanStatus.TODO} /> | ||
</BulletListItem> | ||
|
||
<BulletListItem text="Proposer un mode sombre aux utilisateurs"> | ||
<ActionPlanTag status={ActionPlanStatus.TODO} /> | ||
</BulletListItem> | ||
|
||
<BulletListItem text="Mettre en place un design system 100% accessible"> | ||
<ActionPlanTag status={ActionPlanStatus.TODO} /> | ||
</BulletListItem> | ||
</VerticalUl> | ||
</React.Fragment> | ||
) |