@@ -98,7 +98,7 @@ type collapsible = {
98
98
}
99
99
100
100
module DocsSection = {
101
- type ecosystemItem = {
101
+ type item = {
102
102
imgSrc : string ,
103
103
title : string ,
104
104
description : string ,
@@ -163,7 +163,7 @@ module DocsSection = {
163
163
let languageManual = Constants .languageManual (version )
164
164
let documentation = [
165
165
{
166
- imgSrc : "/static/ic_package.svg " ,
166
+ imgSrc :
"/static/[email protected] " ,
167
167
title : "Language Manual" ,
168
168
description : "Reference for all language features" ,
169
169
href : ` /docs/manual/${version}/introduction` ,
@@ -175,7 +175,7 @@ module DocsSection = {
175
175
},
176
176
},
177
177
{
178
- imgSrc : "/static/ic_package.svg " ,
178
+ imgSrc :
"/static/[email protected] " ,
179
179
title : "ReScript & React" ,
180
180
description : "First class bindings for ReactJS" ,
181
181
href : "/docs/react/latest/introduction" ,
@@ -187,7 +187,7 @@ module DocsSection = {
187
187
},
188
188
},
189
189
{
190
- imgSrc : "/static/ic_package.svg " ,
190
+ imgSrc :
"/static/[email protected] " ,
191
191
title : "GenType" ,
192
192
description : "Seamless TypeScript & Flow interop" ,
193
193
href : "/docs/gentype/latest/introduction" ,
@@ -199,7 +199,7 @@ module DocsSection = {
199
199
},
200
200
},
201
201
{
202
- imgSrc : "/static/ic_package.svg " ,
202
+ imgSrc :
"/static/[email protected] " ,
203
203
title : "Reanalyze" ,
204
204
description : "Dead Code & Termination analysis" ,
205
205
href : "https://github.com/reason-association/reanalyze" ,
@@ -251,7 +251,7 @@ module DocsSection = {
251
251
{Js .Array2 .map (documentation , item => {
252
252
let {imgSrc , title , href , description , isActive } = item
253
253
254
- let icon = <div className = "w-6 h-6" > < img className = "w-full" src = {imgSrc } /> </ div >
254
+ let icon = <img style = { ReactDOM . Style . make (~ width = "2.1875rem" , ())} src = {imgSrc } />
255
255
<LinkCard key = {title } icon title href description active = {isActive (url )} />
256
256
})-> React .array }
257
257
</div >
0 commit comments