Skip to content

Commit

Permalink
fix: remove names from about section
Browse files Browse the repository at this point in the history
  • Loading branch information
cmgriffing committed Nov 15, 2024
1 parent 9179440 commit 7ad2b33
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions playgrounds/app/src/routes/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,13 @@ export default function About() {
) : (
contributors?.latest?.map(contributor => (
<li class="flex flex-col items-center justify-center gap-2">
<img
src={contributor.avatarUrl}
alt={contributor.username}
class="w-16 h-16 rounded-full"
/>
<span class={`text-xl ${linkStyles}`}>{contributor.username}</span>
<a href={`https://github.com/${contributor.username}`}>
<img
src={contributor.avatarUrl}
alt={contributor.username}
class="w-16 h-16 rounded-full"
/>
</a>
</li>
))
)}
Expand Down

0 comments on commit 7ad2b33

Please sign in to comment.