diff --git a/components/Venue/venue.js b/components/Venue/venue.js index bfe191b0..74c0b854 100644 --- a/components/Venue/venue.js +++ b/components/Venue/venue.js @@ -17,6 +17,7 @@ function Venue({ className, city }) { }} className='w-8 h-8 bg-white rounded-xl flex items-center justify-center ml-auto'> Map Icon +
diff --git a/config/city-lists.json b/config/city-lists.json index 28e4aae0..477c05ec 100644 --- a/config/city-lists.json +++ b/config/city-lists.json @@ -46,7 +46,9 @@ ], "ticket": "https://ticket.apidays.global/event/apidays-london-2024/869eca20-bfb6-4103-b8bb-d0348932e940/", "isFree": true, - "ended": true + "ended": true, + "recordings":"https://youtube.com/playlist?list=PLbi1gRlP7pig77jJD2ER9wfTxPSzBrLW5&si=YPmjUsj5mU6FpLhB", + "playlist":"https://www.youtube.com/embed/videoseries?si=92z0xOVroBuDUvMR&list=PLbi1gRlP7pig77jJD2ER9wfTxPSzBrLW5" }, { "name": "Paris", diff --git a/config/links.json b/config/links.json index 306ca7a0..3b6deb9b 100644 --- a/config/links.json +++ b/config/links.json @@ -55,6 +55,11 @@ "title": "London Slides", "ref": "https://drive.google.com/drive/folders/1PsIZSsQmsvSILZ83f9L-2ErV-pXM6PQf?usp=drive_link", "target": "_blank" + }, + { + "title": "London Talks", + "ref": "https://youtube.com/playlist?list=PLbi1gRlP7pig77jJD2ER9wfTxPSzBrLW5&si=YPmjUsj5mU6FpLhB", + "target": "_blank" } diff --git a/pages/venue/[id].js b/pages/venue/[id].js index affa96a8..0ea16371 100644 --- a/pages/venue/[id].js +++ b/pages/venue/[id].js @@ -56,7 +56,7 @@ function Venue({ city }) { {city.date} - {city.ended ? "" :
+ {city.ended ? (city.playlist && ):
{city.ticket && } @@ -77,6 +77,14 @@ function Venue({ city }) {
}
+
+ {city.ended ? (city.playlist && +
+

Recordings

+ +
+ ) :
} +