Skip to content

Commit e1e1009

Browse files
committed
Add the CFP link
1 parent 04c14f8 commit e1e1009

1 file changed

Lines changed: 5 additions & 11 deletions

File tree

src/app/day/2026/components/become-a-speaker.tsx

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { Button } from "@/app/conf/_design-system/button"
22

3+
const CFP_LINK = "https://forms.gle/M1kiuvwK2wLJyNzi9"
4+
35
export 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
)

0 commit comments

Comments
 (0)