MCPcopy Create free account
hub / github.com/codeaashu/claude-code / SkipToContent

Function SkipToContent

web/components/a11y/SkipToContent.tsx:3–18  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1"use client";
2
3export 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected