File tree 6 files changed +8
-6
lines changed
Home/components/ActionButtons
Home/components/ActionButtons
6 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ const ActionButtons: FC<React.PropsWithChildren<unknown>> = () => {
52
52
< Button
53
53
onClick = { trackCFP }
54
54
text = "📢 Call For Papers"
55
- link = "https://sessionize.com/devbcn23/"
55
+ link = { data . cfp . link }
56
56
/>
57
57
) }
58
58
{ isBetween ( sponsorshipStartDay , sponsorshipEndDay ) && (
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ const Speakers2023: FC<React.PropsWithChildren<unknown>> = () => {
83
83
< Button
84
84
onClick = { trackCFP }
85
85
text = "📢 Apply to be a Speaker"
86
- link = "https://sessionize.com/devbcn23/"
86
+ link = { webData . cfp . link }
87
87
/>
88
88
</ div >
89
89
) }
Original file line number Diff line number Diff line change 5
5
},
6
6
"cfp" : {
7
7
"startDay" : " 2022-11-01T00:00:00" ,
8
- "endDay" : " 2023-03-15T00:00:00"
8
+ "endDay" : " 2023-03-15T00:00:00" ,
9
+ "link" : " https://sessionize.com/devbcn23/"
9
10
},
10
11
"diversity" : true ,
11
12
"edition" : " 2023" ,
Original file line number Diff line number Diff line change 5
5
},
6
6
"cfp" : {
7
7
"startDay" : " 2024-01-01T00:00:00" ,
8
- "endDay" : " 2024-04-01T00:00:00"
8
+ "endDay" : " 2024-04-01T00:00:00" ,
9
+ "link" :" https://sessionize.com/devbcn-2024/"
9
10
},
10
11
"diversity" : false ,
11
12
"edition" : " 2024" ,
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ const ActionButtons: FC<React.PropsWithChildren<unknown>> = () => {
51
51
onClick = { trackCFP }
52
52
text = "📢 Call For Papers"
53
53
disabled = { ! isBetween ( CFPStartDay , CFPEndDay ) }
54
- link = "https://sessionize.com/devbcn-2024/"
54
+ link = { data . cfp . link }
55
55
/>
56
56
{ isBetween ( sponsorshipStartDay , sponsorshipEndDay ) && (
57
57
< Button
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ const Speakers: FC<React.PropsWithChildren<unknown>> = () => {
83
83
< Button
84
84
onClick = { trackCFP }
85
85
text = "📢 Apply to be a Speaker"
86
- link = "https://sessionize.com/devbcn23/"
86
+ link = { webData . cfp . link }
87
87
/>
88
88
</ div >
89
89
) }
You can’t perform that action at this time.
0 commit comments