skip-to-main.tsx 472 B

12345678910111213
  1. import { useTranslation } from 'react-i18next'
  2. export function SkipToMain() {
  3. const { t } = useTranslation()
  4. return (
  5. <a
  6. className={`bg-primary text-primary-foreground hover:bg-primary/90 focus-visible:ring-ring fixed start-44 z-999 -translate-y-52 px-4 py-2 text-sm font-medium whitespace-nowrap opacity-95 shadow-sm transition focus:translate-y-3 focus:transform focus-visible:ring-1`}
  7. href='#content'
  8. >
  9. {t('Skip to Main')}
  10. </a>
  11. )
  12. }