File tree Expand file tree Collapse file tree 3 files changed +76
-2
lines changed Expand file tree Collapse file tree 3 files changed +76
-2
lines changed Original file line number Diff line number Diff line change 268
268
}
269
269
.zoom-platinum {
270
270
transition : transform .2s ; /* Animation */
271
- width : 299 px ;
271
+ width : 300 px ;
272
272
height : 153px ;
273
273
cursor : pointer ;
274
274
}
275
275
.zoom-platinum :hover {
276
276
transform : scale (1.1 ); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
277
277
}
278
+ .zoom-gold {
279
+ transition : transform .2s ; /* Animation */
280
+ width : 250px ;
281
+ height : 128px ;
282
+ cursor : pointer ;
283
+ }
284
+ .zoom-gold :hover {
285
+ transform : scale (1.1 ); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
286
+ }
278
287
.zoom-silver {
279
288
transition : transform .2s ; /* Animation */
280
289
width : 208px ;
281
290
height : 106px ;
282
291
cursor : pointer ;
283
292
}
284
-
285
293
.zoom-silver :hover {
286
294
transform : scale (1.1 ); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
287
295
}
296
+ .zoom-bronze {
297
+ transition : transform .2s ; /* Animation */
298
+ width : 144px ;
299
+ height : 103px ;
300
+ cursor : pointer ;
301
+ }
302
+
303
+ .zoom-bronze :hover {
304
+ transform : scale (1.1 ); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
305
+ }
288
306
.zoom-partner {
289
307
transition : transform .2s ; /* Animation */
290
308
width : 158px ;
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import { ReactComponent as Stellate } from "../../../../static/img/conf/Sponsors
4
4
import { ReactComponent as Postman } from "../../../../static/img/conf/Sponsors/Postman.svg"
5
5
import { ReactComponent as Solo } from "../../../../static/img/conf/Sponsors/Solo.svg"
6
6
import { ReactComponent as Hasura } from "../../../../static/img/conf/Sponsors/Hasura.svg"
7
+ import { ReactComponent as TheGraph } from "../../../../static/img/conf/Sponsors/TheGraph.svg"
7
8
8
9
interface Image {
9
10
iconPath : string
@@ -42,6 +43,14 @@ const sponsorPlatinum: Image[] = [
42
43
} ,
43
44
]
44
45
46
+ const sponsorGold : Image [ ] = [
47
+ {
48
+ iconPath : TheGraph ,
49
+ name : "The Graph" ,
50
+ link : "https://thegraph.com/" ,
51
+ } ,
52
+ ]
53
+
45
54
const sponsorSilver : Image [ ] = [
46
55
{
47
56
iconPath : Stellate ,
@@ -90,6 +99,25 @@ const SponsersConf = () => {
90
99
</ a >
91
100
) ) }
92
101
</ div >
102
+
103
+ < h3 className = "text-center text-[--rhodamine] font-bold my-10 underline underline-offset-8" >
104
+ GOLD
105
+ </ h3 >
106
+ < div className = "flex justify-center items-start flex-wrap gap-[20px]" >
107
+ { sponsorGold
108
+ . sort ( ( a , b ) => alphabetSort ( a , b ) )
109
+ . map ( ( sponsor , i ) => (
110
+ < a
111
+ key = { i }
112
+ className = "zoom-gold flex flex-col items-center text-center w-full h-full"
113
+ href = { sponsor . link }
114
+ target = "_blank"
115
+ >
116
+ < sponsor . iconPath />
117
+ </ a >
118
+ ) ) }
119
+ </ div >
120
+
93
121
< h3 className = "text-center text-[--rhodamine] font-bold my-20 underline underline-offset-8" >
94
122
SILVER
95
123
</ h3 >
You can’t perform that action at this time.
0 commit comments