1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-11-23 11:46:08 -05:00

fix font css vars

This commit is contained in:
2025-04-10 20:23:34 -04:00
parent a63098b150
commit eb84ec37ee
13 changed files with 71 additions and 82 deletions

View File

@@ -0,0 +1,17 @@
import styles from "./SkipNav.module.css";
const skipNavId = "skip-nav";
export const SkipNavLink = () => {
return (
<a href={`#${skipNavId}`} tabIndex={0} className={styles.hidden}>
Skip to content
</a>
);
};
export const SkipNavTarget = () => {
return <div id={skipNavId} />;
};
export default SkipNavLink;