File tree Expand file tree Collapse file tree 1 file changed +21
-17
lines changed
Expand file tree Collapse file tree 1 file changed +21
-17
lines changed Original file line number Diff line number Diff line change 11export 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
1111export interface Sponsor {
12- name : string ;
13- website : string ;
14- image : string ;
12+ name : string ;
13+ website : string ;
14+ image : string ;
1515}
1616
1717export 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} ;
You can’t perform that action at this time.
0 commit comments