Skip to content

Commit d53e958

Browse files
committed
Switch to current sponsors
1 parent a1e4c1f commit d53e958

File tree

2 files changed

+9
-23
lines changed

2 files changed

+9
-23
lines changed

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

Lines changed: 8 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
import Stellate from "public/img/conf/Sponsors/Stellate.svg?svgr"
2-
import Hasura from "public/img/conf/Sponsors/Hasura.svg?svgr"
3-
import TheGuild from "public/img/conf/Sponsors/TheGuild.svg?svgr"
4-
import Apollo from "public/img/conf/Sponsors/Apollo.svg?svgr"
5-
import Tyk from "public/img/conf/Sponsors/Tyk.svg?svgr"
6-
import IBM from "public/img/conf/Sponsors/IBM.svg?svgr"
7-
import Graphweaver from "public/img/conf/Sponsors/Graphweaver.svg?svgr"
1+
import Grafbase from "public/img/conf/Sponsors/Grafbase.svg?svgr"
82

93
import { clsx } from "clsx"
104
import { ChevronRight } from "../pixelarticons/chevron-right"
@@ -15,20 +9,12 @@ interface Sponsor {
159
link: string
1610
}
1711

18-
const sponsorDiamond: Sponsor[] = [
19-
{ icon: TheGuild, name: "The Guild", link: "https://the-guild.dev" },
20-
{ icon: IBM, name: "IBM", link: "https://www.ibm.com/products/api-connect" },
21-
]
12+
const sponsorDiamond: Sponsor[] = []
2213

23-
const sponsorGold: Sponsor[] = [
24-
{ icon: Apollo, name: "Apollo", link: "https://www.apollographql.com/" },
25-
{ icon: Graphweaver, name: "Graphweaver", link: "https://graphweaver.com" },
26-
{ icon: Hasura, name: "Hasura", link: "https://hasura.io" },
27-
]
14+
const sponsorGold: Sponsor[] = []
2815

2916
const sponsorSilver: Sponsor[] = [
30-
{ icon: Stellate, name: "Stellate", link: "https://stellate.co" },
31-
{ icon: Tyk, name: "Tyk", link: "https://tyk.io/" },
17+
{ icon: Grafbase, name: "Grafbase", link: "https://grafbase.com/" },
3218
]
3319

3420
export interface SponsorsProps {
@@ -61,9 +47,9 @@ export function Sponsors({ heading }: SponsorsProps) {
6147
<h1 className="typography-h2">{heading}</h1>
6248

6349
<div className="mt-10 md:mt-16">
64-
{sponsorTiers.map(tier => (
65-
<Tier key={tier.name} tier={tier} />
66-
))}
50+
{sponsorTiers.map(
51+
tier => tier.items.length > 0 && <Tier key={tier.name} tier={tier} />,
52+
)}
6753
</div>
6854
</section>
6955
)
@@ -78,7 +64,7 @@ function Tier({ tier }: { tier: Tier }) {
7864
</h3>
7965
<div
8066
className={clsx(
81-
"grid justify-center gap-x-8 gap-y-4 md:grid-cols-2 xl:grid-cols-3",
67+
"grid justify-center gap-x-8 gap-y-4 sm:grid-cols-2 xl:grid-cols-3",
8268
)}
8369
>
8470
{tier.items.map(({ link, icon: Icon, name }, i) => (

src/app/conf/2025/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default function Page() {
4242
</div>
4343
<div className="gql-conf-container gql-conf-navbar-strip text-neu-900 before:bg-white/50 before:dark:bg-blk/30">
4444
<RegisterSection />
45-
<Sponsors heading="Thanks to our 2024 sponsors!" />
45+
<Sponsors heading="Sponsors" />
4646
<Sponsor />
4747
<CallForProposals />
4848
<MarqueeRows

0 commit comments

Comments
 (0)