Skip to content

Commit

Permalink
remove unnecessary comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Arxeno committed Dec 8, 2023
1 parent de290d2 commit 2ce5467
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/app/components/ContributorsCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,6 @@ export default function ContributorsCard({ contributor }: Props): JSX.Element {
href={contributor.html_url}
target="_blank"
>
{/* <div
className="sm:w-[160px] w-[120px] sm:h-[106px] h-[80px]"
style={{ background: `url(${contributors.avatar_url})` }}
></div> */}
{/* <Image
src={contributors.avatar_url}
alt={`${contributors.login}'s profile picture`}
width={460}
height={460}
/> */}

<img
src={contributor.avatar_url}
alt={`${contributor.login}'s profile picture`}
Expand All @@ -35,7 +24,6 @@ export default function ContributorsCard({ contributor }: Props): JSX.Element {
<p className="font-bold text-base text-[#45349F]">
{contributor.login}
</p>
{/* <p className="font-normal text-base text-[#45349F]">{role}</p> */}
</div>
</a>
);
Expand Down

0 comments on commit 2ce5467

Please sign in to comment.