Skip to content

Commit

Permalink
update credits
Browse files Browse the repository at this point in the history
  • Loading branch information
nmsderp authored Mar 10, 2024
1 parent 097f098 commit e3fc1f9
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/playground/credits/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ const fromHardcoded = ({userId, username, name}) => ({
href: `https://scratch.mit.edu/users/${username}/`,
text: name || username
});
const fromOther = ({userId, username, name}) => ({
image: `${userId}`,
href: `${username}`,
text: name || username
});

const fromHardcodedGithub = username => ({
image: `https://github.com/${username}.png`,
Expand Down Expand Up @@ -132,9 +137,13 @@ const snDev = [
'cesderp14',
].map(fromHardcodedGithub);
const snContribute = [
'someCatInTheWorld'
{
image: "https://codeberg.org/avatars/7b7db239db951a3a298d6824a61972dfaede0d06871c43c77753aa993f435f31?size=512",
href: "https://codeberg.org/ACat",
text: "ACat"
}

].map(fromHardcodedGithub)
].map(fromOther)

const rubyDev = [
"Gen1x-ALT",
Expand Down

0 comments on commit e3fc1f9

Please sign in to comment.