diff --git a/components/Agenda/agenda.js b/components/Agenda/agenda.js index 98073925..4ea149e7 100644 --- a/components/Agenda/agenda.js +++ b/components/Agenda/agenda.js @@ -3,7 +3,6 @@ import Heading from '../Typography/heading' import Paragraph from '../Typography/paragraph' function Agenda({ city }) { - console.log(city) return (
@@ -53,7 +52,25 @@ function Agenda({ city }) { {city.speakers[talk.speaker-1].title}
-
:
} + :
} + {talk.speaker && typeof talk.speaker === 'object' &&
+ {talk.speaker.map((speak, i) =>
+
+
+ {city.speakers[speak +
+
+ + {city.speakers[speak-1].name} + + + {city.speakers[speak-1].title} + +
+
+
) + } +
} })} diff --git a/components/Countdown/countdown.js b/components/Countdown/countdown.js index cf7ebfbe..f42faf7d 100644 --- a/components/Countdown/countdown.js +++ b/components/Countdown/countdown.js @@ -4,7 +4,7 @@ import Countdown from 'react-countdown'; const dates = [ { name: 'London, UK', - date: 'September 26, 2023', + date: 'September 20, 2023', }, { name: 'Madrid, Spain', @@ -44,7 +44,21 @@ function Countdowns() { const renderer = ({ days, hours, minutes, seconds, completed }) => { if (completed) { // Render a completed state - return ''; + return
+
+
+
+
+
+ + Ended + + {/*

Seconds

*/} +
+
} else { // Render a countdown return ( diff --git a/components/Header/header.js b/components/Header/header.js index 97af36af..30f07711 100644 --- a/components/Header/header.js +++ b/components/Header/header.js @@ -67,7 +67,6 @@ function Header() { el.style.width = `${d.size}px`; el.style['pointer-events'] = 'auto'; el.style.cursor = 'pointer'; - el.onclick = () => console.info(d); return el; }} globeImageUrl='https://raw.githubusercontent.com/vasturiano/react-globe.gl/master/example/clouds/clouds.png'