This project is a front-end-only React application where you can manage a catalog of dogs. The application includes the following pages:
- Catalog Page: Displays cards with dogs. Each card contains the dog’s name and picture.
- Manage Page: Allows you to add new dogs to the catalog.
- About Page: Contains useful links for this exercise.
-
Install dependencies:
npm install
-
Run the application:
npm start
-
The app should now be running on http://localhost:3000.
The main goal of this exercise is to make the application accessible according to WCAG 2.2 standards.
The points you need to fix in this exercise relate to Links, Lists, Headings, ARIA, Alternative Text, Colors, Forms, Navigation, and Font Size.
You can use the following useful links to help guide your fixes:
- Links: WCAG 2.2 Links Guideline
- Lists: WCAG 2.2 Lists Guideline
- Headings: WCAG 2.2 Headings Guideline
- ARIA: WCAG 2.2 ARIA Guideline
- Alternative Text: WCAG 2.2 Alternative Text Guideline
- Colors: WCAG 2.2 Color Contrast Guideline
- Forms: WCAG 2.2 Forms Guideline
- Navigation: WCAG 2.2 Navigation Guideline
- Font Size: WCAG 2.2 Font Sizing Guideline
Good luck!