-
-
+ {/*
*/}
diff --git a/src/app/conf/2025/pixelarticons/chevron-right.tsx b/src/app/conf/2025/pixelarticons/chevron-right.tsx
new file mode 100644
index 0000000000..180cbc0c4d
--- /dev/null
+++ b/src/app/conf/2025/pixelarticons/chevron-right.tsx
@@ -0,0 +1,17 @@
+export function ChevronRight(props: React.SVGProps
) {
+ return (
+
+ )
+}
diff --git a/src/app/conf/2025/sponsors.tsx b/src/app/conf/2025/sponsors.tsx
deleted file mode 100644
index 3896c1fae2..0000000000
--- a/src/app/conf/2025/sponsors.tsx
+++ /dev/null
@@ -1,116 +0,0 @@
-import Grafbase from "public/img/conf/Sponsors/Grafbase.svg"
-
-import { clsx } from "clsx"
-import NextImage from "next-image-export-optimizer"
-import { Fragment } from "react"
-
-type LogosType = {
- icon: string
- name: string
- link: string
-}
-
-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: "Silver",
- logos: [
- { icon: Grafbase, name: "Grafbase", link: "https://grafbase.com/" },
- ],
- },
-]
-
-function List({
- items,
- className,
- linkClassName,
-}: {
- className?: string
- items: Array
- linkClassName?: string
-}) {
- return (
-
- {items.map(({ link, icon, name }, i) => (
-
-
-
- ↗
-
-
- ))}
-
- )
-}
-
-export function Sponsors() {
- return (
-
- Sponsors
- {SPONSORS.map(({ title, logos }, i) => (
-
-
- {/* Square box */}
-
-
{title}
-
-
-
- ))}
-
- )
-}
diff --git a/src/app/env.d.ts b/src/app/env.d.ts
index f83eac487c..a0ee3ba5f3 100644
--- a/src/app/env.d.ts
+++ b/src/app/env.d.ts
@@ -6,3 +6,8 @@ declare module "*.mdx" {
export default ReactComponent
export const getStaticPaths: GetStaticPaths
}
+
+declare module "*.svg?svgr" {
+ const content: React.FC>
+ export default content
+}