Description
The existing /design-review page should be expanded to surface live axe-core audit results, contrast scores, and component coverage from DesignChecklist. Today it is a static checklist.
Requirements and context
- Must be accessible (WCAG 2.1 AA), responsive, and documented in the design system
- Should be consistent with existing patterns and easy to review
- Relevant code:
src/app/design-review/page.tsx
- Surface violation counts with category breakdown and link to ARIA references
Suggested execution
- Fork the repo and create a branch
git checkout -b uiux/a11y-audit-dashboard
- Implement changes
- Embed an axe runner that scans staged routes
- Add a violations table grouped by impact
- Link to remediation guidance in
docs/
- Validate accessibility and responsive assumptions
Test and commit
- Run checks
npm run lint and component/visual tests
- Cover edge cases
- Responsive breakpoints, empty/loading/error states, keyboard/screen-reader, contrast, dark mode
- Include screenshots/before-after and accessibility (axe) notes
Example commit message
design: build accessibility audit dashboard
Guidelines
- Minimum 95 percent test coverage
- Clear documentation
- Timeframe: 96 hours
Description
The existing
/design-reviewpage should be expanded to surface live axe-core audit results, contrast scores, and component coverage fromDesignChecklist. Today it is a static checklist.Requirements and context
src/app/design-review/page.tsxSuggested execution
git checkout -b uiux/a11y-audit-dashboarddocs/Test and commit
npm run lintand component/visual testsExample commit message
design: build accessibility audit dashboardGuidelines