Skip to content

Commit

Permalink
Merge pull request #21 from blackinai/neurips23
Browse files Browse the repository at this point in the history
update deepmind logo
  • Loading branch information
mirianfsilva committed Nov 7, 2023
2 parents b1bafa8 + 833a2db commit 1cabb36
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
Binary file added src/assets/img/sponsors-partners/deepmind2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/components/Sponsors/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const styles = (theme) => ({
height: theme.spacing(8),
},
duolingoAvatarSize: {
height: theme.spacing(10),
height: theme.spacing(12),
},
});
// Ruby -> Diamond -> Platinum -> Gold -> Silver -> Bronze -> Thank You
Expand All @@ -51,7 +51,7 @@ const sponsorslist = {
Platinum: [
{
title: 'Deepmind',
image: require('./../../assets/img/sponsors-partners/deepmind.png'),
image: require('./../../assets/img/sponsors-partners/deepmind2.png'),
link: 'https://www.upstart.com/',
alt: 'Deepmind Platinum Sponsor & Corporate Sponsor for Equity',
}
Expand Down Expand Up @@ -138,7 +138,7 @@ function Sponsors(props) {
<Grid item xs align="center">
<div className={classes.item}>
<Link href={key.link}>
<img alt={key.title} src={key.image} className={classes.avatarSize} />
<img alt={key.title} src={key.image} className={classes.duolingoAvatarSize} />
</Link>
</div>
</Grid>
Expand Down
7 changes: 5 additions & 2 deletions src/components/SponsorsHome/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ const styles = (theme) => ({
avatarSize: {
height: theme.spacing(8),
},
duolingoAvatarSize: {
height: theme.spacing(12),
},
});
// Ruby -> Diamond -> Platinum -> Gold -> Silver -> Bronze -> Thank You

Expand Down Expand Up @@ -73,7 +76,7 @@ const sponsorslist = [
const CorporateSponsorsforEquity = [
{
title: 'Deepmind',
image: require('./../../assets/img/sponsors-partners/deepmind.png'),
image: require('./../../assets/img/sponsors-partners/deepmind2.png'),
link: 'https://www.upstart.com/',
alt: 'Deepmind Platinum Sponsor & Corporate Sponsor for Equity',
}
Expand Down Expand Up @@ -109,7 +112,7 @@ function SponsorsHome(props) {
<Grid item xs align="center">
<div className={classes.item}>
<Link href={key.link}>
<img alt={key.title} src={key.image} className={classes.avatarSize} />
<img alt={key.title} src={key.image} className={classes.duolingoAvatarSize} />
</Link>
<br></br>
</div>
Expand Down

0 comments on commit 1cabb36

Please sign in to comment.