Accessibility with NextJS #12424
Answered
by
leerob
RidgewellServices
asked this question in
Help
Accessibility with NextJS
#12424
-
How is accessibility meant to be implemented in Next? Do I need to create a Custom Document to do such things as skip to main? |
Beta Was this translation helpful? Give feedback.
Answered by
leerob
May 3, 2020
Replies: 1 comment 4 replies
-
Since Next.js is a framework for React, you can utilize a11y resources already created for React. You could override https://reactjs.org/docs/accessibility.html |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
RidgewellServices
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Since Next.js is a framework for React, you can utilize a11y resources already created for React. You could override
_app.js
to have a shared layout that contains a skip nav.https://reactjs.org/docs/accessibility.html
https://reacttraining.com/reach-ui/skip-nav/