diff --git a/public/img/conf/Sponsors/Grafbase.svg b/public/img/conf/Sponsors/Grafbase.svg
new file mode 100644
index 0000000000..8bafcfde35
--- /dev/null
+++ b/public/img/conf/Sponsors/Grafbase.svg
@@ -0,0 +1,7 @@
+
diff --git a/src/app/conf/2025/page.tsx b/src/app/conf/2025/page.tsx
index 08a33b1f1e..43bc84cc9a 100644
--- a/src/app/conf/2025/page.tsx
+++ b/src/app/conf/2025/page.tsx
@@ -5,7 +5,7 @@ import { Sponsor } from "./sponsorship"
import { Venue } from "./venue"
import { FAQ } from "./faq"
import { Register } from "./register"
-import { PastSponsors } from "./past-sponsors"
+import { Sponsors } from "./sponsors"
import { Speakers } from "./speakers"
export const metadata: Metadata = {
@@ -62,7 +62,7 @@ export default function Page() {
-
+
diff --git a/src/app/conf/2025/past-sponsors.tsx b/src/app/conf/2025/sponsors.tsx
similarity index 63%
rename from src/app/conf/2025/past-sponsors.tsx
rename to src/app/conf/2025/sponsors.tsx
index 9e3d25dcc0..5cd8c50222 100644
--- a/src/app/conf/2025/past-sponsors.tsx
+++ b/src/app/conf/2025/sponsors.tsx
@@ -1,10 +1,4 @@
-import Stellate from "public/img/conf/Sponsors/Stellate.svg"
-import Hasura from "public/img/conf/Sponsors/Hasura.svg"
-import TheGuild from "public/img/conf/Sponsors/TheGuild.svg"
-import Apollo from "public/img/conf/Sponsors/Apollo.svg"
-import Tyk from "public/img/conf/Sponsors/Tyk.svg"
-import IBM from "public/img/conf/Sponsors/IBM.svg"
-import Graphweaver from "public/img/conf/Sponsors/Graphweaver.svg"
+import Grafbase from "public/img/conf/Sponsors/Grafbase.svg"
import { clsx } from "clsx"
import NextImage from "next-image-export-optimizer"
@@ -19,34 +13,33 @@ const SPONSORS: Array<{
title: string
logos: Array
}> = [
- {
- title: "Diamond",
- logos: [
- { icon: TheGuild, name: "The Guild", link: "https://the-guild.dev" },
- {
- icon: IBM,
- name: "IBM",
- link: "https://www.ibm.com/products/api-connect",
- },
- ],
- },
- {
- title: "Gold",
- logos: [
- { icon: Apollo, name: "Apollo", link: "https://www.apollographql.com/" },
- {
- icon: Graphweaver,
- name: "Graphweaver",
- link: "https://graphweaver.com",
- },
- { icon: Hasura, name: "Hasura", link: "https://hasura.io" },
- ],
- },
+ // {
+ // title: "Diamond",
+ // logos: [
+ // { icon: TheGuild, name: "The Guild", link: "https://the-guild.dev" },
+ // {
+ // icon: IBM,
+ // name: "IBM",
+ // link: "https://www.ibm.com/products/api-connect",
+ // },
+ // ],
+ // },
+ // {
+ // title: "Gold",
+ // logos: [
+ // { icon: Apollo, name: "Apollo", link: "https://www.apollographql.com/" },
+ // {
+ // icon: Graphweaver,
+ // name: "Graphweaver",
+ // link: "https://graphweaver.com",
+ // },
+ // { icon: Hasura, name: "Hasura", link: "https://hasura.io" },
+ // ],
+ // },
{
title: "Silver",
logos: [
- { icon: Stellate, name: "Stellate", link: "https://stellate.co" },
- { icon: Tyk, name: "Tyk", link: "https://tyk.io/" },
+ { icon: Grafbase, name: "Grafbase", link: "https://grafbase.com/" },
],
},
]
@@ -99,10 +92,10 @@ function List({
)
}
-export function PastSponsors() {
+export function Sponsors() {
return (
- Thanks to our 2024 sponsors!
+ Sponsors
{SPONSORS.map(({ title, logos }, i) => (
<>