1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-21 05:21:17 -04:00

enable experimental next/future/image (#973)

This commit is contained in:
2022-06-27 20:45:02 -04:00
committed by GitHub
parent a4602335a1
commit f826f59fcc
14 changed files with 183 additions and 184 deletions

View File

@@ -41,9 +41,8 @@ const MetaItem = styled("div", {
color: "$medium",
});
const MetaLink = styled("a", {
const MetaLink = styled(Link, {
color: "inherit",
textDecoration: "none",
"&:hover": {
color: "$link",
@@ -101,8 +100,7 @@ const RepositoryCard = ({
<MetaLink
href={`${url}/stargazers`}
title={`${commaNumber(stars)} ${stars === 1 ? "star" : "stars"}`}
target="_blank"
rel="noopener noreferrer"
underline={false}
>
<MetaIcon as={StarOcticon} />
{commaNumber(stars)}
@@ -115,8 +113,7 @@ const RepositoryCard = ({
<MetaLink
href={`${url}/network/members`}
title={`${commaNumber(forks)} ${forks === 1 ? "fork" : "forks"}`}
target="_blank"
rel="noopener noreferrer"
underline={false}
>
<MetaIcon as={ForkOcticon} />
{commaNumber(forks)}