import styles from './githubLink.module.scss'; import Link, { LinkProps } from 'next/link'; import GithubIcon from '@/assets/icons/github.svg'; import clsx from 'clsx'; import { CursorEffect } from '@/components/cursor'; type GithubLinkProps = Omit & { className?: string }; export function GithubLink(props: GithubLinkProps) { const { className: restClassName, ...restProps } = props; return ( ); }