File tree 4 files changed +18
-2
lines changed
4 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ function Venue({ className, city }) {
17
17
} } className = 'w-8 h-8 bg-white rounded-xl flex items-center justify-center ml-auto' >
18
18
< Image src = '/img/mapIcon.svg' alt = 'Map Icon' width = { 24 } height = { 24 } />
19
19
</ button >
20
+ < div > </ div >
20
21
</ div >
21
22
< div > </ div >
22
23
< div className = 'text-white' >
Original file line number Diff line number Diff line change 46
46
],
47
47
"ticket" : " https://ticket.apidays.global/event/apidays-london-2024/869eca20-bfb6-4103-b8bb-d0348932e940/" ,
48
48
"isFree" : true ,
49
- "ended" : true
49
+ "ended" : true ,
50
+ "recordings" :" https://youtube.com/playlist?list=PLbi1gRlP7pig77jJD2ER9wfTxPSzBrLW5&si=YPmjUsj5mU6FpLhB" ,
51
+ "playlist" :" https://www.youtube.com/embed/videoseries?si=92z0xOVroBuDUvMR&list=PLbi1gRlP7pig77jJD2ER9wfTxPSzBrLW5"
50
52
},
51
53
{
52
54
"name" : " Paris" ,
Original file line number Diff line number Diff line change 55
55
"title" : " London Slides" ,
56
56
"ref" : " https://drive.google.com/drive/folders/1PsIZSsQmsvSILZ83f9L-2ErV-pXM6PQf?usp=drive_link" ,
57
57
"target" : " _blank"
58
+ },
59
+ {
60
+ "title" : " London Talks" ,
61
+ "ref" : " https://youtube.com/playlist?list=PLbi1gRlP7pig77jJD2ER9wfTxPSzBrLW5&si=YPmjUsj5mU6FpLhB" ,
62
+ "target" : " _blank"
58
63
}
59
64
60
65
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ function Venue({ city }) {
56
56
< Heading typeStyle = 'lg' className = 'text-white mt-[24px]' >
57
57
{ city . date }
58
58
</ Heading >
59
- { city . ended ? "" : < div className = 'm-[30px]' >
59
+ { city . ended ? ( city . playlist && < a href = '#recordings' > < Button className = "w-[250px] h-[50px] m-8" > Watch Recordings </ Button > </ a > ) : < div className = 'm-[30px]' >
60
60
{ city . ticket && < a href = { city . ticket } target = '_blank' rel = 'noreferrer' >
61
61
< Button className = "px-8 m-2 w-[250px]" > { city . isFree ? "Get Your Ticket" : "Register Now" } </ Button >
62
62
</ a > }
@@ -77,6 +77,14 @@ function Venue({ city }) {
77
77
< Agenda city = { city } />
78
78
</ div > }
79
79
</ div >
80
+ < div id = "recordings" className = 'flex justify-center' >
81
+ { city . ended ? ( city . playlist &&
82
+ < div className = ' pt-10 mb-24 mx-44 lg:mx-7 flex justify-center flex-col items-center w-[90%] h-[550px] sm:h-72' >
83
+ < h1 className = 'text-white font-bold text-5xl mb-10' > Recordings</ h1 >
84
+ < iframe width = "100%" height = "100%" src = { city . playlist } title = "YouTube video player" frameborder = "0" allow = "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy = "strict-origin-when-cross-origin" allowfullscreen > </ iframe >
85
+ </ div >
86
+ ) : < div > </ div > }
87
+ </ div >
80
88
< div
81
89
id = 'sponsors'
82
90
>
You can’t perform that action at this time.
0 commit comments