Skip to content

Commit b561869

Browse files
authored
feat: caixabank as regular sponsor for 2025 edition (#659)
1 parent 0cad4d5 commit b561869

File tree

1 file changed

+21
-17
lines changed

1 file changed

+21
-17
lines changed
Lines changed: 21 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,29 @@
11
export interface Sponsors {
2-
top: Sponsor[] | null;
3-
premium: Sponsor[] | null;
4-
regular: Sponsor[] | null;
5-
communities: Sponsor[] | null;
6-
basic: Sponsor[] | null;
7-
media_partners: Sponsor[] | null;
8-
supporters: Sponsor[] | null;
2+
top: Sponsor[] | null;
3+
premium: Sponsor[] | null;
4+
regular: Sponsor[] | null;
5+
communities: Sponsor[] | null;
6+
basic: Sponsor[] | null;
7+
media_partners: Sponsor[] | null;
8+
supporters: Sponsor[] | null;
99
}
1010

1111
export interface Sponsor {
12-
name: string;
13-
website: string;
14-
image: string;
12+
name: string;
13+
website: string;
14+
image: string;
1515
}
1616

1717
export const sponsors: Sponsors = {
18-
top: [],
19-
premium: [],
20-
regular: [],
21-
basic: [],
22-
communities: [],
23-
media_partners: [],
24-
supporters: [],
18+
top: [],
19+
premium: [],
20+
regular: [{
21+
name: "Caixabank Tech",
22+
website: "https://www.caixabanktech.com/es/pagina-de-inicio/",
23+
image: "images/sponsors/caixabank-tech.png",
24+
}],
25+
basic: [],
26+
communities: [],
27+
media_partners: [],
28+
supporters: [],
2529
};

0 commit comments

Comments
 (0)