|
1 | 1 | 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; |
9 | 9 | } |
10 | 10 |
|
11 | 11 | export interface Sponsor { |
12 | | - name: string; |
13 | | - website: string; |
14 | | - image: string; |
| 12 | + name: string; |
| 13 | + website: string; |
| 14 | + image: string; |
15 | 15 | } |
16 | 16 |
|
17 | 17 | 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: [], |
29 | 37 | }; |
0 commit comments