File tree Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Original file line number Diff line number Diff line change
1
+ import { Check } from "lucide-react"
1
2
import dynamic from "next/dynamic"
2
3
import { getTranslations } from "next-intl/server"
3
4
4
5
import type { Lang , StatsBoxMetric } from "@/lib/types"
5
6
6
7
import ActivityStats from "@/components/ActivityStats"
7
8
import { HubHero } from "@/components/Hero"
8
- import Checkmark from "@/components/icons/checkmark.svg"
9
9
import Adidas from "@/components/icons/enterprise/adidas.svg"
10
10
import Azure from "@/components/icons/enterprise/azure.svg"
11
11
import BancoSantander from "@/components/icons/enterprise/banco-santander.svg"
@@ -465,7 +465,15 @@ const Page = async ({ params }: { params: { locale: Lang } }) => {
465
465
key = { header }
466
466
className = "grid h-fit grid-cols-[auto,1fr] gap-x-3"
467
467
>
468
- < Checkmark className = "text-2xl text-success" />
468
+ < div className = "grid size-6 place-items-center rounded-full bg-success/25 text-2xl text-success" >
469
+ < Check
470
+ strokeLinecap = "square"
471
+ strokeLinejoin = "miter"
472
+ strokeWidth = { 5 }
473
+ size = { 14 }
474
+ className = "-mb-0.5"
475
+ />
476
+ </ div >
469
477
< h3 className = "h-fit text-lg font-bold" > { header } </ h3 >
470
478
< p className = "col-start-2 text-body-medium" > { content } </ p >
471
479
</ div >
Original file line number Diff line number Diff line change @@ -195,7 +195,12 @@ const ValuesMarquee = ({
195
195
eventCategory = { eventCategory }
196
196
direction = { direction }
197
197
>
198
- < Check className = "me-1 text-success group-hover/item:text-white" />
198
+ < Check
199
+ className = "me-1 size-[1em] text-success group-hover/item:text-white"
200
+ strokeWidth = { 4.5 }
201
+ strokeLinecap = "square"
202
+ strokeLinejoin = "miter"
203
+ />
199
204
{ pairing . ethereum . label }
200
205
</ Item >
201
206
) ) }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments