diff --git a/src/app/day/2026/components/become-a-speaker.tsx b/src/app/day/2026/components/become-a-speaker.tsx index 0133de61fe..ac55d6ed23 100644 --- a/src/app/day/2026/components/become-a-speaker.tsx +++ b/src/app/day/2026/components/become-a-speaker.tsx @@ -2,6 +2,14 @@ import { Button } from "@/app/conf/_design-system/button" const CFP_LINK = "https://forms.gle/M1kiuvwK2wLJyNzi9" +export function CfpButton({ className }: { className?: string }) { + return ( + + ) +} + export function BecomeASpeakerSection({ cfpDeadline, }: { @@ -28,9 +36,7 @@ export function BecomeASpeakerSection({ {cfpDeadline && (

The CFP closes on {cfpDeadline}.

)} - + ) diff --git a/src/app/day/2026/melbourne/page.tsx b/src/app/day/2026/melbourne/page.tsx index 29cd89c959..06c668a68c 100644 --- a/src/app/day/2026/melbourne/page.tsx +++ b/src/app/day/2026/melbourne/page.tsx @@ -4,7 +4,10 @@ import { Button } from "@/app/conf/_design-system/button" import { Hero, HeroDateAndLocation } from "../components/hero" import { AboutSection } from "../components/about-section" import { WhyAttendSection } from "../components/why-attend-section" -import { BecomeASpeakerSection } from "../components/become-a-speaker" +import { + BecomeASpeakerSection, + CfpButton, +} from "../components/become-a-speaker" import { EventPartnersSection } from "../components/event-partners" import { CtaCardSection } from "../components/cta-card-section" import { MarqueeRows } from "@/app/conf/2026/components/marquee-rows" @@ -43,6 +46,7 @@ export default function MelbournePage() { + diff --git a/src/app/day/2026/nyc/page.tsx b/src/app/day/2026/nyc/page.tsx index def1f436af..2fab730f0a 100644 --- a/src/app/day/2026/nyc/page.tsx +++ b/src/app/day/2026/nyc/page.tsx @@ -4,7 +4,10 @@ import { Button } from "@/app/conf/_design-system/button" import { Hero, HeroDateAndLocation } from "../components/hero" import { AboutSection } from "../components/about-section" import { WhyAttendSection } from "../components/why-attend-section" -import { BecomeASpeakerSection } from "../components/become-a-speaker" +import { + BecomeASpeakerSection, + CfpButton, +} from "../components/become-a-speaker" import { EventPartnersSection } from "../components/event-partners" import { CtaCardSection } from "../components/cta-card-section" import { MarqueeRows } from "@/app/conf/2026/components/marquee-rows" @@ -43,6 +46,7 @@ export default function NYCPage() { + diff --git a/src/app/day/2026/paris/page.tsx b/src/app/day/2026/paris/page.tsx index 34e37122b9..a6060e0b34 100644 --- a/src/app/day/2026/paris/page.tsx +++ b/src/app/day/2026/paris/page.tsx @@ -4,7 +4,10 @@ import { Button } from "@/app/conf/_design-system/button" import { Hero, HeroDateAndLocation } from "../components/hero" import { AboutSection } from "../components/about-section" import { WhyAttendSection } from "../components/why-attend-section" -import { BecomeASpeakerSection } from "../components/become-a-speaker" +import { + BecomeASpeakerSection, + CfpButton, +} from "../components/become-a-speaker" import { EventPartnersSection } from "../components/event-partners" import { CtaCardSection } from "../components/cta-card-section" import { MarqueeRows } from "@/app/conf/2026/components/marquee-rows" @@ -43,6 +46,7 @@ export default function ParisPage() { + diff --git a/src/app/day/2026/singapore/page.tsx b/src/app/day/2026/singapore/page.tsx index ff126cf806..619ab1ee47 100644 --- a/src/app/day/2026/singapore/page.tsx +++ b/src/app/day/2026/singapore/page.tsx @@ -4,7 +4,10 @@ import { Button } from "@/app/conf/_design-system/button" import { Hero, HeroDateAndLocation } from "../components/hero" import { AboutSection } from "../components/about-section" import { WhyAttendSection } from "../components/why-attend-section" -import { BecomeASpeakerSection } from "../components/become-a-speaker" +import { + BecomeASpeakerSection, + CfpButton, +} from "../components/become-a-speaker" import { EventPartnersSection } from "../components/event-partners" import { CtaCardSection } from "../components/cta-card-section" import { MarqueeRows } from "@/app/conf/2026/components/marquee-rows" @@ -46,6 +49,7 @@ export default function SingaporePage() { +