mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-06-30 23:45:58 -04:00
properly import and optimize/cache images in markdown files
This commit is contained in:
@@ -11,7 +11,7 @@ export type OctocatLinkProps = Omit<ComponentPropsWithoutRef<typeof Link>, "href
|
||||
|
||||
const OctocatLink = ({ repo, className, ...rest }: OctocatLinkProps) => {
|
||||
return (
|
||||
<Link href={`https://github.com/${repo}`} underline={false} className={styles.octocatLink} {...rest}>
|
||||
<Link href={`https://github.com/${repo}`} plain className={styles.octocatLink} {...rest}>
|
||||
<SiGithub className={clsx(styles.octocat, className)} />
|
||||
</Link>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user