Skip to content

Commit 17b93c2

Browse files
committed
feat: include digital expert online as media partner
1 parent 3af81e3 commit 17b93c2

File tree

2 files changed

+35
-21
lines changed

2 files changed

+35
-21
lines changed

public/images/sponsors/logo-digital-expert.svg

Lines changed: 6 additions & 0 deletions
Loading
Lines changed: 29 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,37 @@
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-
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: [],
18+
top: [],
19+
premium: [],
20+
regular: [
21+
{
22+
name: "Caixabank Tech",
23+
website: "https://www.caixabanktech.com/es/pagina-de-inicio/",
24+
image: "images/sponsors/caixabank-tech.png",
25+
},
26+
],
27+
basic: [],
28+
communities: [],
29+
media_partners: [
30+
{
31+
name: "Digital Expert Online",
32+
website: "https://digital-expert.online/en/",
33+
image: "images/sponsors/logo-digital-expert.svg",
34+
},
35+
],
36+
supporters: [],
2937
};

0 commit comments

Comments
 (0)