We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16f0e49 commit 9a0c6e5Copy full SHA for 9a0c6e5
2 files changed
src/data/sponsors.ts
@@ -4,4 +4,10 @@ export type Sponsor = {
4
link: string;
5
};
6
7
-export const SPONSORS: Sponsor[] = [];
+export const SPONSORS: Sponsor[] = [
8
+ {
9
+ name: "EuroPython Society",
10
+ image: "/sponsors/eps-text.png",
11
+ link: "https://www.europython-society.org/",
12
+ },
13
+];
src/pages/index.tsx
@@ -10,7 +10,7 @@ import { Coc } from "~/sections/coc";
import { Hero } from "~/sections/hero";
import { OrganizerSection } from "~/sections/organizers";
import { Schedule } from "~/sections/schedule";
-import { Sponsors } from "~/sections/sponsors_empty";
+import { Sponsors } from "~/sections/sponsors";
14
import { Venue } from "~/sections/venue";
15
16
const Home = () => (
0 commit comments