Skip to content

Commit

Permalink
fix organizer photos
Browse files Browse the repository at this point in the history
  • Loading branch information
SaraVieira committed Mar 19, 2024
1 parent 0d542be commit 4d8023f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
7 changes: 6 additions & 1 deletion src/components/Speakers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@ const Speakers = ({ noSpeak, speakers, cfp }) => {
/>
</>
) : (
<RainbowWithClicker />
<RainbowWithClicker
styles={{
width: 240,
height: 240
}}
/>
)}
</SpeakerPhoto>
<Unstyled>{human.name}</Unstyled>
Expand Down
2 changes: 1 addition & 1 deletion src/components/rainbow/RainbowWithClicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const RainbowWithClicker = ({ className, flag, ...props }) => {
<Rainbow
{...props}
stripes={flag || stripes}
style={{ cursor: 'pointer' }}
style={{ cursor: 'pointer', ...props.styles }}
className={className}
onClick={() => !flag && cycle()}
/>
Expand Down
21 changes: 17 additions & 4 deletions src/pages/_organizers.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default {
{
name: 'Alejandra Villa',
twitterLink: 'AlxSavage',
githubLink: 'AlxSavage',
// githubLink: 'AlxSavage',
colors: gayStripes
},
{
Expand Down Expand Up @@ -51,15 +51,16 @@ export default {
},
{
name: 'Lian Li',
twitterLink: 'Chimney42',
githubLink: 'Chimney42',
twitterLink: 'lianmakesthings',
githubLink: 'lianmakesthings',
colors: phillyStripes
}
],
barcelona: [
{
name: 'Jeremias Menichelli',
twitterLink: 'jeremenichelli',
githubLink: 'jeremenichelli',
colors: []
},
{
Expand Down Expand Up @@ -101,6 +102,17 @@ export default {
twitterLink: 'bitandbang',
githubLink: 'bnb',
colors: []
},
{
name: 'Edward Sharp',
githubLink: 'edwardsharp',
colors: []
},
{
name: 'Daniel Ehrenberg',
twitterLink: 'littledan',
githubLink: 'littledan',
colors: gayStripes
}
],
Stockholm: [
Expand Down Expand Up @@ -156,7 +168,8 @@ export default {
githubLink: 'cDevPaul',
colors: gayStripes
},
{ name: 'Ramón Huidobro',
{
name: 'Ramón Huidobro',
twitterHandle: 'hola_soy_milk',
githubLink: 'hola-soy-milk',
email: '[email protected]',
Expand Down

0 comments on commit 4d8023f

Please sign in to comment.