Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update sponsors on homepage #183

Merged
merged 2 commits into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed src/assets/sponsorlogos/aws.png
Binary file not shown.
Binary file removed src/assets/sponsorlogos/kwan.png
Binary file not shown.
Binary file added src/assets/sponsorlogos/nunocubalreis.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 removed src/assets/sponsorlogos/portohub.png
Binary file not shown.
Binary file removed src/assets/sponsorlogos/teleperformance.png
Binary file not shown.
Binary file removed src/assets/sponsorlogos/valtech.png
Binary file not shown.
58 changes: 13 additions & 45 deletions src/data/sponsors.js
Original file line number Diff line number Diff line change
@@ -1,70 +1,38 @@
import aws from '../assets/sponsorlogos/aws.png';
import wit from '../assets/sponsorlogos/wit.png';
import portohub from '../assets/sponsorlogos/portohub.png';
import microsoft from '../assets/sponsorlogos/microsoft.png';
import teleperformance from '../assets/sponsorlogos/teleperformance.png';
import outsystems from '../assets/sponsorlogos/outsystems.png';
import valtech from '../assets/sponsorlogos/valtech.png';
import kwan from '../assets/sponsorlogos/kwan.png';
import nunocubalreis from '../assets/sponsorlogos/nunocubalreis.png';

const amountOfTiers = 3;

const sponsors = [
{
id: 1,
image: aws,
alt: 'Logo da AWS',
tier: 2,
link: 'https://aws.amazon.com/'
image: outsystems,
alt: 'Logo da Outsystems',
tier: 1,
link: 'https://www.outsystems.com/'
},
{
id: 2,
image: wit,
alt: 'Logo das Women In Tech',
tier: 3,
link: 'https://women-in-tech.org/'
},
{
id: 3,
image: portohub,
alt: 'Logo do Porto Tech Hub',
tier: 3,
link: 'https://portotechhub.com/'
},
{
id: 4,
image: microsoft,
alt: 'Logo da Microsoft',
tier: 2,
link: 'https://www.microsoft.com/pt-pt/'
},
{
id: 6,
image: teleperformance,
alt: 'Logo da Teleperformance',
id: 3,
image: wit,
alt: 'Logo das Women In Tech',
tier: 2,
link: 'https://jobs.teleperformance.pt/'
},
{
id: 7,
image: outsystems,
alt: 'Logo da Outsystems',
tier: 1,
link: 'https://www.outsystems.com/'
link: 'https://women-in-tech.org/'
},
{
id: 8,
image: valtech,
alt: 'Logo da Valtech',
id: 4,
image: nunocubalreis,
alt: 'Logo da Nuno Cubal Reis',
tier: 2,
link: 'https://www.valtech.com/'
},
{
id: 9,
image: kwan,
alt: 'Logo da KWAN',
tier: 3,
link: 'https://kwan.pt/'
link: 'https://www.nunoreis.pt/'
}
];

Expand Down
Loading