File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
src/components/StartWithEthereumFlow Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import { Wallet } from "@/lib/types"
5
5
import { Image } from "@/components/Image"
6
6
import { Button , ButtonLink } from "@/components/ui/buttons/Button"
7
7
import Checkbox from "@/components/ui/checkbox"
8
+ import { LinkBox } from "@/components/ui/link-box"
8
9
import { Tag } from "@/components/ui/tag"
9
10
10
11
import { trackCustomEvent } from "@/lib/utils/matomo"
@@ -71,7 +72,7 @@ const DownloadAWallet = ({
71
72
< div className = "flex w-full flex-1 flex-col gap-8" >
72
73
< div className = "flex flex-col overflow-hidden rounded-2xl border shadow-window-box" >
73
74
{ newToCryptoWallets . map ( ( wallet ) => (
74
- < div
75
+ < LinkBox
75
76
key = { wallet . name }
76
77
className = "flex cursor-pointer flex-col gap-4 border-b border-body-light bg-background p-4 last:border-b-0 hover:bg-background-highlight sm:p-6"
77
78
onClick = { ( ) => {
@@ -99,7 +100,7 @@ const DownloadAWallet = ({
99
100
Get wallet
100
101
</ ButtonLink >
101
102
</ div >
102
- </ div >
103
+ </ LinkBox >
103
104
) ) }
104
105
</ div >
105
106
< div className = "flex flex-col gap-8 lg:hidden" >
Original file line number Diff line number Diff line change 1
1
import { Image } from "@/components/Image"
2
2
import { ButtonLink } from "@/components/ui/buttons/Button"
3
3
import Link from "@/components/ui/Link"
4
+ import { LinkBox } from "@/components/ui/link-box"
4
5
import { Tag } from "@/components/ui/tag"
5
6
6
7
import { trackCustomEvent } from "@/lib/utils/matomo"
@@ -104,7 +105,7 @@ const LetUseSomeApps = ({
104
105
< div className = "flex flex-1 flex-col gap-8" >
105
106
< div >
106
107
{ dappsList . map ( ( dapp ) => (
107
- < div
108
+ < LinkBox
108
109
key = { dapp . name }
109
110
className = "group flex cursor-pointer flex-col items-center justify-between gap-4 rounded-xl border-b border-background p-4 last:border-b-0 hover:bg-background-highlight sm:flex-row"
110
111
onClick = { ( ) => {
@@ -142,7 +143,7 @@ const LetUseSomeApps = ({
142
143
Go
143
144
</ ButtonLink >
144
145
</ div >
145
- </ div >
146
+ </ LinkBox >
146
147
) ) }
147
148
</ div >
148
149
< div className = "mb-4 flex justify-center lg:hidden" >
You can’t perform that action at this time.
0 commit comments