Skip to content

Commit a19e3a6

Browse files
committed
fix icons and spacing
1 parent 6bc6fa8 commit a19e3a6

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

app/[locale]/roadmap/_components/ReleaseCarousel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ const ReleaseCarousel = () => {
125125
{pastReleases[pastReleases.length - 1].releaseDate ===
126126
release.releaseDate && (
127127
<div className="m-auto w-fit rounded-lg bg-primary-low-contrast px-2 py-1">
128-
<p className="text-sm font-bold">We are here</p>
128+
<p className="text-sm font-bold">In production</p>
129129
</div>
130130
)}
131131
{nextRelease && (

app/[locale]/roadmap/_components/roadmap.tsx

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import { Image } from "@/components/Image"
2121
import MainArticle from "@/components/MainArticle"
2222
import { ButtonLink } from "@/components/ui/buttons/Button"
2323
import Link from "@/components/ui/Link"
24+
import InlineLink from "@/components/ui/Link"
2425
import { LinkBox, LinkOverlay } from "@/components/ui/link-box"
2526

2627
import ReleaseCarousel from "./ReleaseCarousel"
@@ -171,9 +172,11 @@ const RoadmapPage = () => {
171172
key={item.title}
172173
className="flex h-full flex-col gap-4 rounded-3xl border bg-roadmap-card-gradient p-6"
173174
>
174-
<div className="flex items-center justify-between gap-4">
175+
<div className="flex flex-row items-center justify-between gap-4">
175176
<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>
177180
</div>
178181
<p className="flex-grow">{item.description}</p>
179182
<ButtonLink href={item.button.href} variant="outline">
@@ -184,7 +187,7 @@ const RoadmapPage = () => {
184187
</div>
185188
</div>
186189

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">
188191
<div className="flex-1">
189192
<h2 className="mb-8">Why does Ethereum need a roadmap?</h2>
190193
<p className="mb-10">
@@ -253,7 +256,10 @@ const RoadmapPage = () => {
253256
{item.icon}
254257
<h3 className="text-xl">{item.title}</h3>
255258
</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>
257263
<LinkOverlay href={item.href} />
258264
</LinkBox>
259265
))}

0 commit comments

Comments
 (0)