Skip to content

Commit 49c0392

Browse files
authored
feat: sponsor sales closed (#2079)
* feat: sponsor sales closed * update banner * fix section anchor
1 parent df89234 commit 49c0392

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

src/app/conf/2025/components/become-a-sponsor/index.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { StripesDecoration } from "@/app/conf/_design-system/stripes-decoration"
77

88
export function BecomeASponsor() {
99
return (
10-
<section id="sponsors" className="relative overflow-hidden">
10+
<section className="relative overflow-hidden">
1111
<Stripes />
1212
<div className="gql-conf-container gql-conf-section xl:py-16">
1313
<header className="flex flex-col gap-x-48 gap-y-4 md:flex-row md:items-end md:justify-between">
@@ -23,9 +23,10 @@ export function BecomeASponsor() {
2323
href="https://events.linuxfoundation.org/sponsor-GraphQLConf-25?utm_source=graphql_conf_2025&utm_medium=website&utm_campaign=sponsor_section"
2424
target="_blank"
2525
rel="noreferrer"
26-
className="shrink-0"
26+
className="shrink-0 opacity-55"
27+
disabled
2728
>
28-
Download the Prospectus
29+
Sponsor Sales Closed
2930
</Button>
3031
</header>
3132
<dl className="relative z-10 mt-10 border border-neu-300 md:backdrop-blur-[6.4px] xl:mt-16">
@@ -100,7 +101,7 @@ function Stripes() {
100101
[--end-2:hsl(var(--color-neu-0))]
101102
dark:[--start-2:rgba(255,204,239,.1)]
102103
dark:[--end-2:hsl(var(--color-pri-lighter)/.4)]
103-
104+
104105
translate-y-12
105106
106107
[mask-size:120%]

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

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,13 @@ 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="#sponsors">
42-
Become a Sponsor
41+
<Button
42+
disabled
43+
className="opacity-55"
44+
variant="secondary"
45+
href="#sponsors"
46+
>
47+
Sponsor Sales Closed
4348
</Button>
4449
</div>
4550
</div>

src/app/conf/2025/components/sponsors.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ const sponsorTiers: Tier[] = [
108108

109109
export function Sponsors({ heading }: SponsorsProps) {
110110
return (
111-
<section className="gql-conf-section mx-auto py-16">
111+
<section id="sponsors" className="gql-conf-section mx-auto py-16">
112112
<h1 className="typography-h2">{heading}</h1>
113113

114114
<div className="mt-10 md:mt-16">

theme.config.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,13 +204,12 @@ export default {
204204
banner: {
205205
content: (
206206
<>
207-
📣 GraphQLConf 2025 • Sept 08-10 • Amsterdam • Early bird tickets
208-
available &amp; sponsorship opportunities open •{" "}
207+
📣 GraphQLConf 2025 • Sept 08-10 • Amsterdam •{" "}
209208
<NextLink
210209
href="/conf/2025"
211210
className="underline after:font-sans after:content-['_→']"
212211
>
213-
Learn more
212+
Register Today!
214213
</NextLink>
215214
</>
216215
),

0 commit comments

Comments
 (0)