Skip to content

Commit 9a0c6e5

Browse files
feat: add EuroPython Society sponsor
1 parent 16f0e49 commit 9a0c6e5

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

src/data/sponsors.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,10 @@ export type Sponsor = {
44
link: string;
55
};
66

7-
export const SPONSORS: Sponsor[] = [];
7+
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { Coc } from "~/sections/coc";
1010
import { Hero } from "~/sections/hero";
1111
import { OrganizerSection } from "~/sections/organizers";
1212
import { Schedule } from "~/sections/schedule";
13-
import { Sponsors } from "~/sections/sponsors_empty";
13+
import { Sponsors } from "~/sections/sponsors";
1414
import { Venue } from "~/sections/venue";
1515

1616
const Home = () => (

0 commit comments

Comments
 (0)