Skip to content

Commit 2c7a744

Browse files
authored
Registration (#2331)
Doesn't add all the reg components we had last year but does add the reg link. Button need better styling...
1 parent a465a06 commit 2c7a744

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ export function RegisterToday({ className }: RegisterTodayProps) {
3737
</p>
3838
</div>
3939
<div className="mt-10 flex gap-x-6 gap-y-4 max-sm:flex-col">
40-
<Button disabled className="opacity-55" href={GET_TICKETS_LINK}>
41-
Registration Coming Soon
40+
<Button className="opacity-55" href={GET_TICKETS_LINK}>
41+
Register
4242
</Button>
4343
<Button className="opacity-55" variant="secondary" href="#sponsors">
4444
Explore Sponsorship

src/app/conf/2026/layout.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ export default function Layout({
4141
year={2026}
4242
links={[
4343
{ children: "CFP", href: "https://sessionize.com/graphqlconf-2026/" },
44+
{
45+
children: "Register",
46+
href: "https://register.linuxfoundation.org/graphql-conf-2026",
47+
},
4448
{ children: "Sponsors", href: "/conf/2026/#sponsors" },
4549
{ children: "Resources", href: "/conf/2026/resources" },
4650
{

src/app/conf/2026/links.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const GET_TICKETS_LINK =
2-
"https://cvent.me/PBNYEe?utm_source=graphql_conf_2026&utm_medium=website&utm_campaign=register_section"
2+
"https://register.linuxfoundation.org/graphql-conf-2026"
33

44
export const BECOME_A_SPEAKER_LINK =
55
"https://sessionize.com/graphqlconf-2026/?utm_source=graphql_conf_2026&utm_medium=website&utm_campaign=register_section"

src/app/conf/2026/page.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ export default function Page() {
3232
<Button className="md:w-fit" href={BECOME_A_SPEAKER_LINK}>
3333
Submit Your Talk
3434
</Button>
35+
<Button className="md:w-fit" href={GET_TICKETS_LINK}>
36+
Get Your Ticket
37+
</Button>
3538
</Hero>
3639
<div className="gql-container gql-conf-navbar-strip text-neu-900 before:bg-white/40 before:dark:bg-blk/30">
3740
<MarqueeRows
@@ -66,12 +69,11 @@ export default function Page() {
6669
description="Join two transformative days of expert insights and innovation to shape the next decade of APIs!"
6770
>
6871
<Button
69-
disabled
7072
className="opacity-55"
7173
variant="primary"
7274
href={GET_TICKETS_LINK}
7375
>
74-
Coming Soon
76+
Register Now
7577
</Button>
7678
</CtaCardSection>
7779
<MarqueeRows

0 commit comments

Comments
 (0)