@@ -39,8 +39,8 @@ module LogoSection = {
39
39
type t = {ocamlSummary : string }
40
40
41
41
@react.component
42
- let make = (~content , ~ colspan ) =>
43
- <div className = { "space-y-8 " ++ colspan } >
42
+ let make = (~content ) =>
43
+ <div className = "space-y-8" >
44
44
<img className = "h-10" src = "/static/ocaml-logo.jpeg" alt = "OCaml" />
45
45
<P > {React .string (content .ocamlSummary )} </P >
46
46
{
@@ -111,8 +111,8 @@ module MainLinksSection = {
111
111
}
112
112
113
113
@react.component
114
- let make = (~content , ~ colspan ) =>
115
- <div className = {"grid grid-cols-2 gap-8 " ++ colspan }>
114
+ let make = (~content ) =>
115
+ <div className = {"grid grid-cols-2 gap-8" }>
116
116
<div className = "md:grid md:grid-cols-2 md:gap-8" >
117
117
{
118
118
let section = content .principlesSection
@@ -183,9 +183,9 @@ type t = {
183
183
let make = (~content ) =>
184
184
<FooterContainer footerLabel = content .footer >
185
185
<div className = "xl:grid xl:grid-cols-3 xl:gap-8" >
186
- <LogoSection content = content . logoContent colspan = "xl:col-span-1" / >
187
- <div className = "mt-12 xl:mt-0" >
188
- <MainLinksSection content = content .mainLinksContent colspan = "xl:col-span-2" />
186
+ <div className = "xl:col-span-1" > < LogoSection content = content . logoContent /> </ div >
187
+ <div className = "mt-12 xl:mt-0 xl:col-span-2 " >
188
+ <MainLinksSection content = content .mainLinksContent />
189
189
</div >
190
190
</div >
191
191
<div className = ` mt-10` > <SponsorsSection content = content .sponsorContent /> </div >
0 commit comments