Skip to content

Commit

Permalink
Merge pull request #26 from blackinai/neurips23
Browse files Browse the repository at this point in the history
Add BAI Funders list
  • Loading branch information
mirianfsilva committed Dec 9, 2023
2 parents a17dda9 + 035ef50 commit 6c7dc52
Show file tree
Hide file tree
Showing 16 changed files with 171 additions and 46 deletions.
Binary file added src/assets/img/funders/alfredSloan.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/funders/chanZuckerberg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/funders/etsy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/funders/fordfoundation.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/funders/gsk.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/funders/macarthur.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/funders/microsoft.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/funders/pmjf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/funders/rockefeller.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/img/sponsors-partners/mathworks.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
72 changes: 72 additions & 0 deletions src/components/Sponsors/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,65 @@ const sponsorslist = {
link: "https://www.duolingo.com/",
alt: "Duolingo Bronze Sponsor"
},
{
title: "MathWorks",
image: require('./../../assets/img/sponsors-partners/mathworks.png'),
link: "https://www.duolingo.com/",
alt: "MathWorks Bronze Sponsor"
},
],
};

const fundersList = [
{
title: 'Rockefeller Foundation',
image: require('./../../assets/img/funders/rockefeller.png'),
link: 'https://www.rockefellerfoundation.org/',
alt: 'BAI Funder Rockefeller Foundation',
},
{
title: 'MacArthur Foundation',
image: require('./../../assets/img/funders/macarthur.png'),
link: 'https://www.macfound.org/',
alt: 'BAI Funder MacArthur Foundation',
},
{
title: 'Patrick J McGovern Foudnation',
image: require('./../../assets/img/funders/pmjf.png'),
link: 'https://www.mcgovern.org/',
alt: 'BAI Funder Patrick J McGovern Foudnation',
},
{
title: 'Ford Foundation',
image: require('./../../assets/img/funders/fordfoundation.jpeg'),
link: 'https://www.fordfoundation.org/',
alt: 'BAI Funder Ford Foundation',
},
{
title: 'Sloan Foundation',
image: require('./../../assets/img/funders/alfredSloan.png'),
link: 'https://sloan.org/',
alt: 'BAI Funder Sloan Foundation',
},
{
title: 'Etsy',
image: require('./../../assets/img/funders/etsy.png'),
link: 'https://www.etsy.com/',
alt: 'BAI Funder Etsy',
},
{
title: 'GSK',
image: require('./../../assets/img/funders/gsk.png'),
link: 'https://www.gsk.com/',
alt: 'BAI Funder GSK',
},
{
title: 'Microsoft',
image: require('./../../assets/img/funders/microsoft.png'),
link: 'https://www.microsoft.com/en-us/research/',
alt: 'BAI Funder Microsoft',
},
]

function Sponsors(props) {
const { classes } = props;
Expand Down Expand Up @@ -191,6 +247,22 @@ function Sponsors(props) {
</div>
</Grid>
))}
<Grid container spacing={12}>
<Grid item xs={12}>
<Typography variant="h3" marked="center" align="center" component="h2" className={classes.title}>
Black in AI Funders
</Typography>
</Grid>
{fundersList.map(key => (
<Grid item xs align="center">
<div className={classes.item}>
<Link href={key.link}>
<img alt={key.title} src={key.image} className={classes.avatarSize} />
</Link>
</div>
</Grid>
))}
</Grid>
</Grid>
</Container>
</section>
Expand Down
102 changes: 66 additions & 36 deletions src/components/SponsorsHome/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const sponsorslist = [
{
title: 'IBM',
image: require('./../../assets/img/sponsors-partners/ibm.png'),
link: 'https://www.ibm.com/',
link: 'https://research.ibm.com/',
alt: 'IBM Gold Sponsor'
},
{
Expand All @@ -71,6 +71,12 @@ const sponsorslist = [
link: "https://www.duolingo.com/",
alt: "Duolingo Bronze Sponsor"
},
{
title: "MathWorks",
image: require('./../../assets/img/sponsors-partners/mathworks.png'),
link: "https://www.duolingo.com/",
alt: "MathWorks Bronze Sponsor"
},
{
title: "Vector Institute",
image: require('./../../assets/img/sponsors-partners/vectorInstitute.png'),
Expand All @@ -79,14 +85,56 @@ const sponsorslist = [
}
]

// const CorporateSponsorsforEquity = [
// {
// title: 'Deepmind',
// image: require('./../../assets/img/sponsors-partners/deepmind2.png'),
// link: 'https://deepmind.google/',
// alt: 'Deepmind Platinum Sponsor & Corporate Sponsor for Equity',
// }
// ]
const fundersList = [
{
title: 'Rockefeller Foundation',
image: require('./../../assets/img/funders/rockefeller.png'),
link: 'https://www.rockefellerfoundation.org/',
alt: 'BAI Funder Rockefeller Foundation',
},
{
title: 'MacArthur Foundation',
image: require('./../../assets/img/funders/macarthur.png'),
link: 'https://www.macfound.org/',
alt: 'BAI Funder MacArthur Foundation',
},
{
title: 'Patrick J McGovern Foudnation',
image: require('./../../assets/img/funders/pmjf.png'),
link: 'https://www.mcgovern.org/',
alt: 'BAI Funder Patrick J McGovern Foudnation',
},
{
title: 'Ford Foundation',
image: require('./../../assets/img/funders/fordfoundation.jpeg'),
link: 'https://www.fordfoundation.org/',
alt: 'BAI Funder Ford Foundation',
},
{
title: 'Sloan Foundation',
image: require('./../../assets/img/funders/alfredSloan.png'),
link: 'https://sloan.org/',
alt: 'BAI Funder Sloan Foundation',
},
{
title: 'Etsy',
image: require('./../../assets/img/funders/etsy.png'),
link: 'https://www.etsy.com/',
alt: 'BAI Funder Etsy',
},
{
title: 'GSK',
image: require('./../../assets/img/funders/gsk.png'),
link: 'https://www.gsk.com/',
alt: 'BAI Funder GSK',
},
{
title: 'Microsoft',
image: require('./../../assets/img/funders/microsoft.png'),
link: 'https://www.microsoft.com/en-us/research/',
alt: 'BAI Funder Microsoft',
},
]


function SponsorsHome(props) {
Expand All @@ -110,42 +158,24 @@ function SponsorsHome(props) {
</div>
</Grid>
))}
{/* <Grid item xs={12}>
<Typography variant="h4" align="center" component="h3" className={classes.title}>
Corporate Sponsors for Equity
</Typography>
{CorporateSponsorsforEquity.map(key => (
<Grid container spacing={12}>
<Grid item xs={12}>
<Typography variant="h3" marked="center" align="center" component="h2" className={classes.title}>
Black in AI Funders
</Typography>
</Grid>
{fundersList.map(key => (
<Grid item xs align="center">
<div className={classes.item}>
<Link href={key.link}>
<img alt={key.title} src={key.image} className={classes.duolingoAvatarSize} />
<img alt={key.title} src={key.image} className={classes.avatarSize} />
</Link>
<br></br>
</div>
</Grid>
))}
</Grid> */}
</Grid>
</Container>

{/* <Container>
<Grid container spacing={12}>
<Grid item xs={12}>
<Typography variant="h3" marked="center" align="center" component="h2" className={classes.title}>
Corporate Sponsors for Equity
</Typography>
</Grid>
{CorporateSponsorsforEquity.map(key => (
<Grid item xs align="center">
<div className={classes.item}>
<Link href={key.link}>
<img alt={key.title} src={key.image} className={classes.avatarSize} />
</Link>
</div>
</Grid>
))}
</Grid>
</Container> */}
</Container>
</section>
);
}
Expand Down
31 changes: 27 additions & 4 deletions src/components/SponsorshipHeader/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CardMedia, Container, Grid } from '@material-ui/core';
import { CardMedia, Container, Grid, Button } from '@material-ui/core';
import { withStyles } from '@material-ui/core/styles';
import PropTypes from 'prop-types';
import React from 'react';
Expand Down Expand Up @@ -41,6 +41,23 @@ const styles = (theme) => ({
},
});

const ColorButton = withStyles((theme) => ({
root: {
color: theme.palette.getContrastText(theme.palette.primary.dark),
backgroundColor: theme.palette.primary.dark,
'&:hover': {
backgroundColor: theme.palette.primary.dark,
},
},
secundary: {
color: theme.palette.getContrastText(theme.palette.primary.light),
backgroundColor: theme.palette.primary.light,
'&:hover': {
backgroundColor: theme.palette.primary.light,
},
},
}))(Button);

function SponsorshipHeader(props) {
const { classes } = props;

Expand All @@ -49,11 +66,17 @@ function SponsorshipHeader(props) {
<Grid container spacing={4}>
<Grid item xs={12} md={6}>
<Typography align="left" variant="h3" marked="center" className={classes.title}>
Become a sponsor of Black in AI
</Typography>
Become a Black in AI Sponsor
</Typography>
<Typography align="left" variant="h5">
As a sponsor, you will have the utmost impact on various areas of our organization.
</Typography>
</Typography>
<Typography align="left" variant="h4" className={classes.title}>
Become a sponsor of the Black in AI Workshop at NeurIPS 2023
</Typography>
<ColorButton className={classes.chip} variant="contained" href="https://dashing-snarl-477.notion.site/Black-in-AI-Sponsors-FAQ-46a1df8cc2c64a46ab195734290a665e">
Access the NeurIPS 2023 Sponsorship FAQ
</ColorButton>
</Grid>
<Grid item xs={12} md={6}>
<CardMedia component="img" height="400" width="350" image={image}
Expand Down
8 changes: 4 additions & 4 deletions src/components/SponsorshipNeurips2023/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ function SponsorshipHeader(props) {
<Grid item xs={12} md={6}>
<Typography align="left" variant="h3" marked="center" className={classes.title}>
Become a sponsor of the Black in AI Workshop at NeurIPS 2023
</Typography>
<ColorButton className={classes.chip} variant="contained" href="https://dashing-snarl-477.notion.site/Black-in-AI-Sponsors-FAQ-46a1df8cc2c64a46ab195734290a665e">
Access the NeurIPS 2023 Sponsorship FAQ
</ColorButton>
</Typography>
<ColorButton className={classes.chip} variant="contained" href="https://dashing-snarl-477.notion.site/Black-in-AI-Sponsors-FAQ-46a1df8cc2c64a46ab195734290a665e">
Access the NeurIPS 2023 Sponsorship FAQ
</ColorButton>
</Grid>
<Grid item xs={12} md={6}>
<CardMedia component="img" height="400" width="350" image={image}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Home/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function Home() {
<CssBaseline />
<Navbar/>
<CallForPapers/>
<AdvertisingBar/>
{/* <AdvertisingBar/> */}
<HomeHeader/>
<HomeQuote/>
<HomeBody/>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Sponsorship/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function Sponsorship() {
<Navbar />
<SponsorshipHeader/>
<SponsorshipBody/>
<SponsorshipNeurips2023/>
{/* <SponsorshipNeurips2023/> */}
<Sponsors/>
<Footer />
</ThemeProvider>
Expand Down

0 comments on commit 6c7dc52

Please sign in to comment.