Skip to content

Commit 9d00088

Browse files
jorydotcomsaihaj
andauthored
Adds Sponsors Section + Grafbase (#1964)
* Add Grafbase logo for 2025 Conf * Create sponsors.tsx * Update page.tsx * use the new design --------- Co-authored-by: Saihajpreet Singh <[email protected]>
1 parent d1bfca3 commit 9d00088

File tree

3 files changed

+36
-36
lines changed

3 files changed

+36
-36
lines changed

public/img/conf/Sponsors/Grafbase.svg

+7
Loading

src/app/conf/2025/page.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Sponsor } from "./sponsorship"
55
import { Venue } from "./venue"
66
import { FAQ } from "./faq"
77
import { Register } from "./register"
8-
import { PastSponsors } from "./past-sponsors"
8+
import { Sponsors } from "./sponsors"
99
import { Speakers } from "./speakers"
1010

1111
export const metadata: Metadata = {
@@ -62,7 +62,7 @@ export default function Page() {
6262
<Hero />
6363
<div className="container my-20 flex flex-col gap-20 md:my-32 md:gap-32">
6464
<Intro />
65-
<PastSponsors />
65+
<Sponsors />
6666
<Sponsor />
6767
<Speakers />
6868
<Register />

src/app/conf/2025/past-sponsors.tsx src/app/conf/2025/sponsors.tsx

+27-34
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
import Stellate from "public/img/conf/Sponsors/Stellate.svg"
2-
import Hasura from "public/img/conf/Sponsors/Hasura.svg"
3-
import TheGuild from "public/img/conf/Sponsors/TheGuild.svg"
4-
import Apollo from "public/img/conf/Sponsors/Apollo.svg"
5-
import Tyk from "public/img/conf/Sponsors/Tyk.svg"
6-
import IBM from "public/img/conf/Sponsors/IBM.svg"
7-
import Graphweaver from "public/img/conf/Sponsors/Graphweaver.svg"
1+
import Grafbase from "public/img/conf/Sponsors/Grafbase.svg"
82

93
import { clsx } from "clsx"
104
import NextImage from "next-image-export-optimizer"
@@ -19,34 +13,33 @@ const SPONSORS: Array<{
1913
title: string
2014
logos: Array<LogosType>
2115
}> = [
22-
{
23-
title: "Diamond",
24-
logos: [
25-
{ icon: TheGuild, name: "The Guild", link: "https://the-guild.dev" },
26-
{
27-
icon: IBM,
28-
name: "IBM",
29-
link: "https://www.ibm.com/products/api-connect",
30-
},
31-
],
32-
},
33-
{
34-
title: "Gold",
35-
logos: [
36-
{ icon: Apollo, name: "Apollo", link: "https://www.apollographql.com/" },
37-
{
38-
icon: Graphweaver,
39-
name: "Graphweaver",
40-
link: "https://graphweaver.com",
41-
},
42-
{ icon: Hasura, name: "Hasura", link: "https://hasura.io" },
43-
],
44-
},
16+
// {
17+
// title: "Diamond",
18+
// logos: [
19+
// { icon: TheGuild, name: "The Guild", link: "https://the-guild.dev" },
20+
// {
21+
// icon: IBM,
22+
// name: "IBM",
23+
// link: "https://www.ibm.com/products/api-connect",
24+
// },
25+
// ],
26+
// },
27+
// {
28+
// title: "Gold",
29+
// logos: [
30+
// { icon: Apollo, name: "Apollo", link: "https://www.apollographql.com/" },
31+
// {
32+
// icon: Graphweaver,
33+
// name: "Graphweaver",
34+
// link: "https://graphweaver.com",
35+
// },
36+
// { icon: Hasura, name: "Hasura", link: "https://hasura.io" },
37+
// ],
38+
// },
4539
{
4640
title: "Silver",
4741
logos: [
48-
{ icon: Stellate, name: "Stellate", link: "https://stellate.co" },
49-
{ icon: Tyk, name: "Tyk", link: "https://tyk.io/" },
42+
{ icon: Grafbase, name: "Grafbase", link: "https://grafbase.com/" },
5043
],
5144
},
5245
]
@@ -99,10 +92,10 @@ function List({
9992
)
10093
}
10194

102-
export function PastSponsors() {
95+
export function Sponsors() {
10396
return (
10497
<section>
105-
<h1 className="conf-heading mb-12">Thanks to our 2024 sponsors!</h1>
98+
<h1 className="conf-heading mb-12">Sponsors</h1>
10699
{SPONSORS.map(({ title, logos }, i) => (
107100
<>
108101
<div className="mb-2 flex items-center gap-2 border-b-2 border-dotted border-white/40 pb-1.5">

0 commit comments

Comments
 (0)