Skip to content

Commit

Permalink
feat: add github link to profile (#1459)
Browse files Browse the repository at this point in the history
  • Loading branch information
a0m0rajab authored Aug 7, 2023
1 parent f8f1d49 commit d42bc6d
Showing 1 changed file with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ const ContributorProfileInfo = ({
{isConnected && <Badge text="beta" />}
</div>
<div className="flex items-center text-sm gap-3">
<span className="text-light-slate-11 text-sm">{`@${githubName}`}</span>

{isConnected && (
<>
{displayLocalTime && (
Expand Down Expand Up @@ -93,6 +91,18 @@ const ContributorProfileInfo = ({
</span>
)}

<span className="flex gap-2 items-center">
<FiGithub className="text-light-slate-9" />
<Link
href={`https://github.com/${githubName}`}
target="_blank"
rel="noreferrer"
className="w-max hover:text-orange-500 "
>
{githubName}
</Link>
</span>

{twitterUsername && (
<span className="flex gap-2 items-center">
<FiTwitter className="text-light-slate-9" />
Expand Down

0 comments on commit d42bc6d

Please sign in to comment.