Pretty much what the title says. If I hit tab several times eventually a button - otherwise invisibile - will be highlighted that says “skip to content”. Here’s what it looks like in the DOM: html <a href="#main-content" class="sc-bdvvtL sc-iKMXQg dOzIBG jWmnog">Skip to content</a>
And here’s where it’s used in the admin pane: ```tsx
// @strapi/admin/admin/src/pages/App/index.js
// …
<Suspense fallback={}>
{formatMessage({ id: ‘skipToContent’, defaultMessage: ‘Skip to content’ })}
{authRoutes}
<Route
path=“/auth/:authType”
render={(routerProps) => (
<AuthPage {…routerProps} setHasAdmin={setHasAdmin} hasAdmin={hasAdmin} />
)}
exact
/>
// …
What is the purpose of this? Does this satisfy some accessibility standard? Thanks.
<i>This topic has been created from a Discord post (1294717857980219467) to give it more visibility.
It will be on Read-Only mode here.
<a href="https://discord.com/channels/811989166782021633/1294717857980219467/1294717857980219467">Join the conversation on Discord</a></i>