Skip to content

Commit

Permalink
Merge pull request #119 from PyConColombia/develop
Browse files Browse the repository at this point in the history
馃殌 Deploy
  • Loading branch information
arendondiosa committed Jun 2, 2024
2 parents 5bf7de0 + 7e29834 commit b62a902
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 33 deletions.
13 changes: 7 additions & 6 deletions src/app/[lang]/sponsors/components/SponsorList.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@ const SponsorList = ({ level, list, lang }) => {
<Col xs={12} md={4}>
<span className={`badge ${level}`}>{labels[level]}</span>
</Col>
<Col xs={12} md={8}>
<hr className="separator" />
</Col>
</Row>
<Row>
{list.map((sponsor, index) => (
<Sponsor key={index} level={level} sponsorData={sponsor} lang={lang} />
))}
<div className="sponsor-wrapper">
<div className={`sponsor-divider ${level}`}>
{list.map((sponsor, index) => (
<Sponsor key={index} level={level} sponsorData={sponsor} lang={lang} />
))}
</div>
</div>
</Row>
</div>
)
Expand Down
12 changes: 6 additions & 6 deletions src/data/schedule.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,6 @@
{
"room": "aux_1",
"event_id": 6
},
{
"room": "aux_2",
"event_id": 10
}
]
},
Expand All @@ -108,6 +104,10 @@
{
"room": "aux_1",
"event_id": 21
},
{
"room": "aux_2",
"event_id": 10
}
]
},
Expand Down Expand Up @@ -535,8 +535,8 @@
"events": [
{
"room": "main",
"title": "Sebasti谩n Monta帽o",
"id": "sebastian-montano"
"title": "Sebasti谩n Ram铆rez",
"id": "sebas-ramirez"
}
]
},
Expand Down
22 changes: 1 addition & 21 deletions src/data/speakers.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,26 +119,6 @@
"country_origin": "us",
"country_residence": ""
},
{
"id": "marlene-mhangami",
"type": "keynote",
"first_name": "Marlene",
"last_name": "Mhangami",
"email": "marlenemhangami@gmail.com",
"photo": "marlene-mhangami.jpeg",
"biography": {
"en": "Marlene is a software engineer, explorer, and speaker currently based in London. She is a Senior Developer Advocate working at Microsoft focusing on Python and AI. Marlene is a previous director and vice-chair for the Python Software Foundation and is currently serving as the vice-chair of the Association for Computing Machinery practitioner board. In 2017, she co-founded ZimboPy, a non-profit organization that gives Zimbabwean young women access to resources in the field of technology. She is also the previous chair of PyCon Africa and is an advocate for women in tech on the continent.",
"es": "Marlene es una ingeniera de software, exploradora y conferenciante residente en Londres. Es defensora de los desarrolladores s茅nior y trabaja en Microsoft centrada en Python y la IA. Marlene ha sido directora y vicepresidenta de la Python Software Foundation y actualmente es vicepresidenta de la junta de profesionales de la Association for Computing Machinery. En 2017, cofund贸 ZimboPy, una organizaci贸n sin 谩nimo de lucro que ofrece a las j贸venes de Zimbabue acceso a recursos en el campo de la tecnolog铆a. Tambi茅n fue presidenta de PyCon Africa y es defensora de las mujeres tecnol贸gicas en el continente."
},
"affiliation": "PSF",
"facebook": "",
"twitter": "@marlene_zw",
"linkedin": "marlenemhangami",
"github": "marlenezw",
"website": "http://marlenemhangami.com/",
"country_origin": "za",
"country_residence": ""
},
{
"id": "andres-castellano",
"type": "speaker",
Expand Down Expand Up @@ -1047,4 +1027,4 @@
"country_origin": "ve",
"country_residence": ""
}
]
]
19 changes: 19 additions & 0 deletions src/styles/partials/_sponsors.sass
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,22 @@
&.bronze
background-image: linear-gradient(to bottom right, #FF8C8B, #FF7372, #FF7372)
color: variables.$third-text-color

.sponsor-wrapper
padding: 0 10px
.sponsor-divider
border: 3px solid variables.$black
border-radius: 10px
margin: 10px 0
&.venue
border-color: #0d47a1
&.diamond
border-color: #b9f2ff
&.platinum
border-color: #E5E4E2
&.gold
border-color: #FFDE8C
&.silver, &.silver_plus
border-color: #bbbbbb
&.bronze
border-color: #FF8C8B

0 comments on commit b62a902

Please sign in to comment.