mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-04-07 08:15:52 -04:00
19 lines
434 B
TypeScript
19 lines
434 B
TypeScript
export function SkipLink() {
|
|
return (
|
|
<>
|
|
<a
|
|
href="#main-content"
|
|
className="absolute -top-10 left-4 z-50 bg-canvas-100 px-4 py-2 transition-all focus:top-4"
|
|
>
|
|
Skip to main content
|
|
</a>
|
|
<a
|
|
href="#main-navigation"
|
|
className="absolute -top-10 left-4 z-50 bg-canvas-100 px-4 py-2 transition-all focus:top-4"
|
|
>
|
|
Skip to navigation
|
|
</a>
|
|
</>
|
|
)
|
|
}
|