Skip to content

Commit b054e44

Browse files
authored
feat: show get tickets cta since speaker registraion is now closed (#2038)
1 parent 5cb1131 commit b054e44

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/app/conf/2025/components/register-today/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { clsx } from "clsx"
22
import NextImage from "next-image-export-optimizer"
33

44
import { Button } from "../../../_design-system/button"
5-
import { GET_TICKETS_LINK, BECOME_A_SPEAKER_LINK } from "../../links"
5+
import { GET_TICKETS_LINK } from "../../links"
66

77
import speakerImage from "./speaker.webp"
88

@@ -38,8 +38,8 @@ export function RegisterToday({ className }: RegisterTodayProps) {
3838
</div>
3939
<div className="mt-10 flex gap-x-6 gap-y-4 max-sm:flex-col">
4040
<Button href={GET_TICKETS_LINK}>Register today</Button>
41-
<Button variant="secondary" href={BECOME_A_SPEAKER_LINK}>
42-
Become a speaker
41+
<Button variant="secondary" href="#sponsors">
42+
Become a Sponsor
4343
</Button>
4444
</div>
4545
</div>

src/app/conf/2025/components/top-minds/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Image from "next-image-export-optimizer"
44
import type { StaticImageData } from "next/image"
55

66
import { Button } from "@/app/conf/_design-system/button"
7-
import { BECOME_A_SPEAKER_LINK } from "../../links"
7+
import { GET_TICKETS_LINK } from "../../links"
88
import { StripesDecoration } from "@/app/conf/_design-system/stripes-decoration"
99
import {
1010
SocialIconType,
@@ -111,8 +111,8 @@ export default function TopMindsSection({
111111
View all speakers
112112
</Button>
113113
) : (
114-
<Button variant="secondary" href={BECOME_A_SPEAKER_LINK}>
115-
Become a speaker
114+
<Button variant="secondary" href={GET_TICKETS_LINK}>
115+
Get tickets
116116
</Button>
117117
)}
118118
</div>

0 commit comments

Comments
 (0)