()
| 1 | "use client"; |
| 2 | |
| 3 | export function SkipToContent() { |
| 4 | return ( |
| 5 | <a |
| 6 | href="#main-content" |
| 7 | className={[ |
| 8 | "sr-only focus:not-sr-only", |
| 9 | "focus:fixed focus:top-4 focus:left-4 focus:z-50", |
| 10 | "focus:px-4 focus:py-2 focus:rounded-md", |
| 11 | "focus:bg-brand-600 focus:text-white focus:font-medium focus:text-sm", |
| 12 | "focus:outline-none focus:ring-2 focus:ring-brand-300 focus:ring-offset-2", |
| 13 | ].join(" ")} |
| 14 | > |
| 15 | Skip to main content |
| 16 | </a> |
| 17 | ); |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected