File tree Expand file tree Collapse file tree
src/app/day/2026/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { Button } from "@/app/conf/_design-system/button"
22
3+ const CFP_LINK = "https://forms.gle/M1kiuvwK2wLJyNzi9"
4+
35export function BecomeASpeakerSection ( {
4- cfpLink,
56 cfpDeadline,
67} : {
7- cfpLink ?: string
88 cfpDeadline ?: string
99} ) {
1010 return (
@@ -28,15 +28,9 @@ export function BecomeASpeakerSection({
2828 { cfpDeadline && (
2929 < p className = "typography-body-lg" > The CFP closes on { cfpDeadline } .</ p >
3030 ) }
31- { cfpLink ? (
32- < Button href = { cfpLink } className = "whitespace-nowrap md:w-fit" >
33- Submit a talk
34- </ Button >
35- ) : (
36- < Button disabled className = "whitespace-nowrap opacity-55 md:w-fit" >
37- CFP coming soon
38- </ Button >
39- ) }
31+ < Button href = { CFP_LINK } className = "whitespace-nowrap md:w-fit" >
32+ Submit a talk
33+ </ Button >
4034 </ div >
4135 </ section >
4236 )
You can’t perform that action at this time.
0 commit comments