@@ -23,24 +23,24 @@ function TierIcon() {
23
23
)
24
24
}
25
25
26
- interface Image {
26
+ interface Sponsor {
27
27
icon : React . FC < React . SVGProps < SVGElement > >
28
28
name : string
29
29
link : string
30
30
}
31
31
32
- const sponsorDiamond : Image [ ] = [
32
+ const sponsorDiamond : Sponsor [ ] = [
33
33
{ icon : TheGuild , name : "The Guild" , link : "https://the-guild.dev" } ,
34
34
{ icon : IBM , name : "IBM" , link : "https://www.ibm.com/products/api-connect" } ,
35
35
]
36
36
37
- const sponsorGold : Image [ ] = [
37
+ const sponsorGold : Sponsor [ ] = [
38
38
{ icon : Apollo , name : "Apollo" , link : "https://www.apollographql.com/" } ,
39
39
{ icon : Graphweaver , name : "Graphweaver" , link : "https://graphweaver.com" } ,
40
40
{ icon : Hasura , name : "Hasura" , link : "https://hasura.io" } ,
41
41
]
42
42
43
- const sponsorSilver : Image [ ] = [
43
+ const sponsorSilver : Sponsor [ ] = [
44
44
{ icon : Stellate , name : "Stellate" , link : "https://stellate.co" } ,
45
45
{ icon : Tyk , name : "Tyk" , link : "https://tyk.io/" } ,
46
46
]
@@ -51,7 +51,7 @@ export interface SponsorsProps {
51
51
52
52
interface Tier {
53
53
name : string
54
- items : Image [ ]
54
+ items : Sponsor [ ]
55
55
}
56
56
57
57
const sponsorTiers : Tier [ ] = [
0 commit comments