@@ -6,6 +6,8 @@ import { ReactComponent as Solo } from "../../../../static/img/conf/Sponsors/Sol
6
6
import { ReactComponent as Hasura } from "../../../../static/img/conf/Sponsors/Hasura.svg"
7
7
import { ReactComponent as TheGraph } from "../../../../static/img/conf/Sponsors/TheGraph.svg"
8
8
import { ReactComponent as TheGuild } from "../../../../static/img/conf/Sponsors/TheGuild.svg"
9
+ import { ReactComponent as Hygraph } from "../../../../static/img/conf/Sponsors/Hygraph.svg"
10
+ import { ReactComponent as StepZen } from "../../../../static/img/conf/Sponsors/StepZen.svg"
9
11
10
12
interface Image {
11
13
iconPath : string
@@ -47,6 +49,11 @@ const sponsorPlatinum: Image[] = [
47
49
name : "Solo.io" ,
48
50
link : "https://www.solo.io/" ,
49
51
} ,
52
+ {
53
+ iconPath : Hygraph ,
54
+ name : "Hygraph" ,
55
+ link : "https://hygraph.com/" ,
56
+ } ,
50
57
]
51
58
52
59
const sponsorGold : Image [ ] = [
@@ -55,6 +62,11 @@ const sponsorGold: Image[] = [
55
62
name : "The Graph" ,
56
63
link : "https://thegraph.com/" ,
57
64
} ,
65
+ {
66
+ iconPath : StepZen ,
67
+ name : "StepZen" ,
68
+ link : "https://stepzen.com/" ,
69
+ } ,
58
70
]
59
71
60
72
const sponsorSilver : Image [ ] = [
@@ -70,7 +82,6 @@ const workshopDaySponsors: Image[] = [
70
82
iconPath : TheGuild ,
71
83
name : "The Guild" ,
72
84
link : "https://the-guild.dev/" ,
73
- workshopSponsor : true ,
74
85
} ,
75
86
]
76
87
@@ -98,13 +109,13 @@ const SponsersConf = () => {
98
109
< h3 className = "text-center text-[--rhodamine] font-bold my-10 underline underline-offset-8" >
99
110
PLATINUM
100
111
</ h3 >
101
- < div className = "flex justify-center items-start flex-wrap gap-[20px]" >
112
+ < div className = "flex justify-center items-center flex-wrap gap-[20px]" >
102
113
{ sponsorPlatinum
103
114
. sort ( ( a , b ) => alphabetSort ( a , b ) )
104
115
. map ( ( sponsor , i ) => (
105
116
< a
106
117
key = { i }
107
- className = "zoom-platinum flex flex-col items-center text-center w-full h -full"
118
+ className = "zoom-platinum self-center flex flex-col text-center w-full"
108
119
href = { sponsor . link }
109
120
target = "_blank"
110
121
>
@@ -116,7 +127,7 @@ const SponsersConf = () => {
116
127
< h3 className = "text-center text-[--rhodamine] font-bold my-10 underline underline-offset-8" >
117
128
GOLD
118
129
</ h3 >
119
- < div className = "flex justify-center items-start flex-wrap gap-[20px ]" >
130
+ < div className = "flex justify-center items-start flex-wrap gap-[40px ]" >
120
131
{ sponsorGold
121
132
. sort ( ( a , b ) => alphabetSort ( a , b ) )
122
133
. map ( ( sponsor , i ) => (
@@ -134,7 +145,7 @@ const SponsersConf = () => {
134
145
< h3 className = "text-center text-[--rhodamine] font-bold my-10 underline underline-offset-8" >
135
146
SILVER
136
147
</ h3 >
137
- < div className = "flex justify-center items-start flex-wrap gap-[20px ]" >
148
+ < div className = "flex justify-center items-start flex-wrap gap-[40px ]" >
138
149
{ sponsorSilver
139
150
. sort ( ( a , b ) => alphabetSort ( a , b ) )
140
151
. map ( ( sponsor , i ) => (
@@ -148,14 +159,15 @@ const SponsersConf = () => {
148
159
</ a >
149
160
) ) }
150
161
</ div >
151
- < h1 className = "text-center text-4xl text-[#171E26] font-bold my-8 pt-10" >
162
+
163
+ < h3 className = "text-center text-[--rhodamine] font-bold my-10 underline underline-offset-8" >
152
164
Workshop Day Sponsor
153
- </ h1 >
154
- < div className = "flex justify-center items-center flex-wrap gap-[40px]" >
165
+ </ h3 >
166
+ < div className = "flex justify-center items-center flex-wrap gap-[40px] h-[70%] " >
155
167
{ workshopDaySponsors . map ( ( sponsor , i ) => (
156
168
< a
157
169
key = { i }
158
- className = "zoom-diamond flex flex-col items-center text-center w-full h-full "
170
+ className = "zoom-platinum flex flex-col items-center text-center"
159
171
href = { sponsor . link }
160
172
target = "_blank"
161
173
>
0 commit comments