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

bump next to 13.5

This commit is contained in:
2023-10-02 11:59:15 -04:00
parent 1d8c2eab99
commit 893db7e951
24 changed files with 707 additions and 2528 deletions

View File

@@ -1,7 +1,7 @@
import commaNumber from "comma-number";
import Link from "../Link";
import RelativeTime from "../RelativeTime";
import { StarOcticon, ForkOcticon } from "../Icons";
import { GoStar, GoRepoForked } from "react-icons/go";
import { styled, theme } from "../../lib/styles/stitches.config";
import type { Project } from "../../types";
@@ -50,9 +50,9 @@ const MetaLink = styled(Link, {
const MetaIcon = styled("svg", {
width: "16px",
height: "16px",
verticalAlign: "text-bottom",
verticalAlign: "-0.3em",
marginRight: "0.5em",
fill: "currentColor",
strokeWidth: 0.75,
});
const LanguageCircle = styled("span", {
@@ -100,7 +100,7 @@ const RepositoryCard = ({
title={`${commaNumber(stars)} ${stars === 1 ? "star" : "stars"}`}
underline={false}
>
<MetaIcon as={StarOcticon} />
<MetaIcon as={GoStar} />
{commaNumber(stars)}
</MetaLink>
</MetaItem>
@@ -113,7 +113,7 @@ const RepositoryCard = ({
title={`${commaNumber(forks)} ${forks === 1 ? "fork" : "forks"}`}
underline={false}
>
<MetaIcon as={ForkOcticon} />
<MetaIcon as={GoRepoForked} />
{commaNumber(forks)}
</MetaLink>
</MetaItem>