Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/app/conf/2025/components/register-today/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { clsx } from "clsx"
import NextImage from "next-image-export-optimizer"

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

import speakerImage from "./speaker.webp"

Expand Down Expand Up @@ -38,8 +38,8 @@ export function RegisterToday({ className }: RegisterTodayProps) {
</div>
<div className="mt-10 flex gap-x-6 gap-y-4 max-sm:flex-col">
<Button href={GET_TICKETS_LINK}>Register today</Button>
<Button variant="secondary" href={BECOME_A_SPEAKER_LINK}>
Become a speaker
<Button variant="secondary" href="#sponsors">
Become a Sponsor
</Button>
</div>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/app/conf/2025/components/top-minds/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Image from "next-image-export-optimizer"
import type { StaticImageData } from "next/image"

import { Button } from "@/app/conf/_design-system/button"
import { BECOME_A_SPEAKER_LINK } from "../../links"
import { GET_TICKETS_LINK } from "../../links"
import { StripesDecoration } from "@/app/conf/_design-system/stripes-decoration"
import {
SocialIconType,
Expand Down Expand Up @@ -111,8 +111,8 @@ export default function TopMindsSection({
View all speakers
</Button>
) : (
<Button variant="secondary" href={BECOME_A_SPEAKER_LINK}>
Become a speaker
<Button variant="secondary" href={GET_TICKETS_LINK}>
Get tickets
</Button>
)}
</div>
Expand Down