Skip to content

Commit f4aff58

Browse files
committed
Add pinterest to logos thanks to permission
1 parent 896d35d commit f4aff58

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

site/index.html.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,10 +546,10 @@ public class Character {
546546
<a href="https://developer.github.com/early-access/graphql" target="_blank">
547547
<img src="/users/logos/github.png" title="GitHub" className="round" />
548548
</a>
549-
{/** /}
550549
<a href="https://www.pinterest.com/" target="_blank">
551550
<img src="/users/logos/pinterest.png" title="Pinterest" className="round" />
552551
</a>
552+
{/** /}
553553
<a href="https://www.airbnb.com/" target="_blank">
554554
<img src="/users/logos/airbnb.png" title="Airbnb" className="round" />
555555
</a>

site/users/index.html.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,12 @@ var logos = [
3838
img: 'coursera.png',
3939
link: 'https://www.coursera.org/'
4040
},
41+
{
42+
name: 'Pinterest',
43+
img: 'pinterest.png',
44+
isRound: true,
45+
link: 'https://www.pinterest.com/'
46+
},
4147
{
4248
name: 'Hudl',
4349
img: 'hudl.png',
@@ -135,7 +141,7 @@ module.exports = ({ page }) =>
135141
{logos.sort((a, b) =>
136142
a.name.toLowerCase() < b.name.toLowerCase() ? -1 : 1
137143
).map(logo =>
138-
<a href={logo.link} target="_blank">
144+
<a href={logo.link} target="_blank" key={logo.name}>
139145
<img src={'/users/logos/' + logo.img} title={logo.name} className={logo.isRound ? 'round' : null} />
140146
</a>
141147
)}

0 commit comments

Comments
 (0)