diff --git a/public/img/conf/Sponsors/Chillicream.svg b/public/img/conf/Sponsors/Chillicream.svg new file mode 100644 index 0000000000..0e23046729 --- /dev/null +++ b/public/img/conf/Sponsors/Chillicream.svg @@ -0,0 +1,16 @@ + + + + + + + + + \ No newline at end of file diff --git a/public/img/conf/Sponsors/Grafast.svg b/public/img/conf/Sponsors/Grafast.svg new file mode 100644 index 0000000000..ffbc151185 --- /dev/null +++ b/public/img/conf/Sponsors/Grafast.svg @@ -0,0 +1,631 @@ + + + + diff --git a/public/img/conf/Sponsors/WunderGraph-graded.svg b/public/img/conf/Sponsors/WunderGraph-graded.svg new file mode 100644 index 0000000000..114e16ef90 --- /dev/null +++ b/public/img/conf/Sponsors/WunderGraph-graded.svg @@ -0,0 +1,85 @@ + + + +WunderGraph diff --git a/src/app/conf/2026/components/sponsors.tsx b/src/app/conf/2026/components/sponsors.tsx index f7a03e82e7..d8ef4d3531 100644 --- a/src/app/conf/2026/components/sponsors.tsx +++ b/src/app/conf/2026/components/sponsors.tsx @@ -1,5 +1,9 @@ import { clsx } from "clsx" import { ChevronRight } from "../../_design-system/pixelarticons/chevron-right" +import TheGuild from "public/img/conf/Sponsors/TheGuild.svg?svgr" +import Wundergraph from "public/img/conf/Sponsors/WunderGraph-graded.svg?svgr" +import Grafast from "public/img/conf/Sponsors/Grafast.svg?svgr" +import Chillicream from "public/img/conf/Sponsors/Chillicream.svg?svgr" interface Sponsor { icon: @@ -34,11 +38,66 @@ const sponsorPlatinum: Sponsor[] = [ }, ] -const sponsorGold: Sponsor[] = [] +const sponsorGold: Sponsor[] = [ + { + icon: (props: React.SVGProps) => ( + + ), + name: "Wundergraph", + link: "https://wundergraph.com/", + }, + { + icon: (props: React.SVGProps) => ( + + ), + name: "The Guild", + link: "https://the-guild.dev/graphql/hive", + }, +] -const sponsorSilver: Sponsor[] = [] +const sponsorSilver: Sponsor[] = [ + { + icon: (props: React.SVGProps) => ( + + ), + name: "Chillicream", + link: "https://the-guild.dev/graphql/hive", + }, +] -const sponsorBronze: Sponsor[] = [] +const sponsorBronze: Sponsor[] = [ + { + icon: (props: React.SVGProps) => ( + + ), + name: "Grafast", + link: "https://grafast.org/", + }, +] export interface SponsorsProps { heading?: string