Skip to content

Commit 39b088e

Browse files
authored
Merge pull request #16158 from ethereum/founders-success
feat: new /founders page
2 parents ae36854 + 6966712 commit 39b088e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+974
-100
lines changed

app/[locale]/developers/page.tsx

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { Fragment } from "react"
2-
import { Check } from "lucide-react"
32
import { getTranslations } from "next-intl/server"
43

54
import type { Lang } from "@/lib/types"
@@ -10,6 +9,7 @@ import BigNumber from "@/components/BigNumber"
109
import { CopyButton } from "@/components/CopyToClipboard"
1110
import FeedbackCard from "@/components/FeedbackCard"
1211
import HubHero from "@/components/Hero/HubHero"
12+
import { CheckCircle } from "@/components/icons/CheckCircle"
1313
import { Image } from "@/components/Image"
1414
import MainArticle from "@/components/MainArticle"
1515
import { ButtonLink } from "@/components/ui/buttons/Button"
@@ -99,13 +99,7 @@ const WhyGrid = () => {
9999
>
100100
{items.map(({ heading, description }) => (
101101
<div className="flex gap-1.5" key={heading}>
102-
<div className="my-1 grid h-fit place-items-center rounded-full bg-success/20 p-1">
103-
<Check
104-
className="size-3 stroke-[4] text-success"
105-
strokeLinecap="square"
106-
strokeLinejoin="miter"
107-
/>
108-
</div>
102+
<CheckCircle />
109103
<div className="space-y-1">
110104
<h3 className="text-lg">{heading}</h3>
111105
<p className="text-body-medium">{description}</p>
Lines changed: 11 additions & 0 deletions
Loading
Lines changed: 15 additions & 0 deletions
Loading
Lines changed: 4 additions & 0 deletions
Loading
Lines changed: 12 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)