E0006 - next.config.js:5 - The lang attribute is either not present on the <html> element or has an empty value.
Added i18n block to define the locale as "en"
E0011 - pages\index.ts:210 & pages\index,ts:225 - The highlighted element has been detected inside of a <ul> or an <ol> and is in the incorrect place.
Removed extra div elements used for tooltips on the instance list and added the classes to the clickable li elements instead
W0006 - The highlighted <a> has been detected to contain target="_blank", which means the link will open in a new tab.
Added a CSS rule to append a screen-reader only element to the end of a elements with a target of _blank which tells the user that the link opens in a new window/tab
Additionally add the aria-hidden=true attributes to the FontAwesome icons inside a elements to improve screen-reader flow.
Fixes some tiny spelling mistakes in the frontend, as well as resolving some accessibility issues.
A11Y issues fixed (error codes from Checka11y.css):
E0006 - next.config.js:5 - The lang attribute is either not present on the
<html>
element or has an empty value.E0011 - pages\index.ts:210 & pages\index,ts:225 - The highlighted element has been detected inside of a
<ul>
or an<ol>
and is in the incorrect place.div
elements used for tooltips on the instance list and added the classes to the clickableli
elements insteadW0006 - The highlighted
<a>
has been detected to contain target="_blank", which means the link will open in a new tab.a
elements with a target of_blank
which tells the user that the link opens in a new window/tabAdditionally add the
aria-hidden=true
attributes to the FontAwesome icons insidea
elements to improve screen-reader flow.