@@ -21,6 +21,7 @@ import { Image } from "@/components/Image"
21
21
import MainArticle from "@/components/MainArticle"
22
22
import { ButtonLink } from "@/components/ui/buttons/Button"
23
23
import Link from "@/components/ui/Link"
24
+ import InlineLink from "@/components/ui/Link"
24
25
import { LinkBox , LinkOverlay } from "@/components/ui/link-box"
25
26
26
27
import ReleaseCarousel from "./ReleaseCarousel"
@@ -171,9 +172,11 @@ const RoadmapPage = () => {
171
172
key = { item . title }
172
173
className = "flex h-full flex-col gap-4 rounded-3xl border bg-roadmap-card-gradient p-6"
173
174
>
174
- < div className = "flex items-center justify-between gap-4" >
175
+ < div className = "flex flex-row items-center justify-between gap-4" >
175
176
< h3 className = "m-0" > { item . title } </ h3 >
176
- { item . icon }
177
+ < div className = "flex h-12 w-12 items-center justify-center" >
178
+ { item . icon }
179
+ </ div >
177
180
</ div >
178
181
< p className = "flex-grow" > { item . description } </ p >
179
182
< ButtonLink href = { item . button . href } variant = "outline" >
@@ -184,7 +187,7 @@ const RoadmapPage = () => {
184
187
</ div >
185
188
</ div >
186
189
187
- < div className = "flex flex-col-reverse gap-12 px-8 py-16 md:w-full md:flex-row lg:px-20 " >
190
+ < div className = "flex flex-col-reverse gap-12 px-8 py-4 md:w-full md:flex-row" >
188
191
< div className = "flex-1" >
189
192
< h2 className = "mb-8" > Why does Ethereum need a roadmap?</ h2 >
190
193
< p className = "mb-10" >
@@ -253,7 +256,10 @@ const RoadmapPage = () => {
253
256
{ item . icon }
254
257
< h3 className = "text-xl" > { item . title } </ h3 >
255
258
</ div >
256
- < p className = "m-0 p-0 text-body-medium" > { item . description } </ p >
259
+ < p className = "m-0 p-0 pb-3 text-body-medium" >
260
+ { item . description }
261
+ </ p >
262
+ < InlineLink href = { item . href } > Learn more</ InlineLink >
257
263
< LinkOverlay href = { item . href } />
258
264
</ LinkBox >
259
265
) ) }
0 commit comments