Skip to content

Commit 6f8a1ce

Browse files
authored
Add hipo as a sponsor (#6)
* feat(sponsors): add hipo * fix(dataset): fix path to hipo logo
1 parent 1e32b19 commit 6f8a1ce

File tree

3 files changed

+6
-44
lines changed

3 files changed

+6
-44
lines changed

assets/sponsors/hipolabs.png

114 KB
Loading

src/Components/SponsorsShowcase/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ export default class SponsorsShowcase extends React.Component<
3434
</div>
3535
);
3636
})}
37-
{/*sponsors.map(sponsor => (
37+
{sponsors.map(sponsor => (
3838
<a id={sponsor.id} key={sponsor.name} href={sponsor.link} target="_blank" rel="noopener noreferrer" style={{ gridArea: sponsor.id }}>
3939
<img src={sponsor.photo} />
4040
</a>
41-
))*/}
41+
))}
4242
</div>
4343
);
4444
}

src/dataset.ts

Lines changed: 4 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -20,48 +20,10 @@ export const SPEAKERS: Speaker[] = [
2020
export const SPONSORS: Sponsor[][] = [
2121
[
2222
{
23-
id: "sinnerschrader",
24-
name: "SinnerSchrader",
25-
photo: "https://via.placeholder.com/150",
26-
link: "https://sinnerschrader.com"
27-
},
28-
{
29-
id: "PySV",
30-
name: "Python Software Verband",
31-
photo: "https://via.placeholder.com/150",
32-
link: "https://python-verband.org"
33-
},
34-
{
35-
id: "PSF",
36-
name: "Python Software Foundation",
37-
photo: "https://via.placeholder.com/150",
38-
link: "https://www.python.org"
39-
},
40-
{
41-
id: "Yelp",
42-
name: "Yelp",
43-
photo: "https://via.placeholder.com/150",
44-
link: "https://www.yelp.com"
45-
}
46-
],
47-
[
48-
{
49-
id: "pythonitalia",
50-
name: "TBA",
51-
photo: "https://via.placeholder.com/150",
52-
link: "https://pycon.it/"
53-
},
54-
{
55-
id: "psf",
56-
name: "TBA",
57-
photo: "https://via.placeholder.com/150",
58-
link: "https://www.012factory.it/"
59-
},
60-
{
61-
id: "f012actory",
62-
name: "TBA",
63-
photo: "https://via.placeholder.com/150",
64-
link: "https://www.012factory.it/"
23+
id: "HipoLabs",
24+
name: "Hipo",
25+
photo: require("assets/sponsors/hipolabs.png"),
26+
link: "https://hipolabs.com"
6527
}
6628
]
6729
];

0 commit comments

Comments
 (0)