@@ -19,6 +19,7 @@ import GatsbyImage from "../../../GatsbyImage"
19
19
import { FALLBACK_ETH_PRICE , USD_RECEIVE_AMOUNT } from "../../constants"
20
20
import { EXAMPLE_APP_URL } from "./constants"
21
21
import { Browser } from "./Browser"
22
+ import { NotificationPopover } from "../../NotificationPopover"
22
23
23
24
export const ConnectWeb3 : React . FC < PhoneScreenProps > = ( { nav, ctaLabel } ) => {
24
25
const { progressStepper, step } = nav
@@ -108,45 +109,59 @@ export const ConnectWeb3: React.FC<PhoneScreenProps> = ({ nav, ctaLabel }) => {
108
109
</ Text >
109
110
< Flex gap = { 2 } mb = { 6 } >
110
111
< GatsbyImage image = { NFTs [ 0 ] . image } alt = "NFT Image" />
111
- < Flex
112
- direction = "column"
113
- fontSize = { { base : "xs" , sm : "sm" } }
114
- textAlign = "start"
115
- alignItems = "start"
116
- gap = { 1 }
112
+ < NotificationPopover
113
+ title = "Example walkthrough"
114
+ content = "These are some things you could do as the owner of your NFTs"
115
+ placement = "top"
117
116
>
118
- < Text fontWeight = "bold" fontSize = "md" mb = "auto" ms = { 2 } >
119
- Cool art
120
- </ Text >
121
- < Button
122
- variant = "link"
123
- isDisabled
124
- leftIcon = { < Icon as = { RiAuctionLine } fontSize = "xs" /> }
117
+ < Flex
118
+ direction = "column"
119
+ fontSize = { { base : "xs" , sm : "sm" } }
120
+ textAlign = "start"
121
+ alignItems = "start"
122
+ gap = { 1 }
125
123
>
126
- Set a price
124
+ < Text fontWeight = "bold" fontSize = "md" mb = "auto" ms = { 2 } >
125
+ Cool art
126
+ </ Text >
127
+ < Button
128
+ variant = "link"
129
+ isDisabled
130
+ leftIcon = { < Icon as = { RiAuctionLine } fontSize = "xs" /> }
131
+ >
132
+ Set a price
133
+ </ Button >
134
+ < Button
135
+ variant = "link"
136
+ isDisabled
137
+ leftIcon = { < Icon as = { RiPriceTag2Line } fontSize = "xs" /> }
138
+ >
139
+ Auction item
140
+ </ Button >
141
+ < Button
142
+ variant = "link"
143
+ isDisabled
144
+ leftIcon = { < Icon as = { RiFileTransferLine } fontSize = "xs" /> }
145
+ >
146
+ Transfer item
147
+ </ Button >
148
+ </ Flex >
149
+ </ NotificationPopover >
150
+ </ Flex >
151
+ < NotificationPopover
152
+ title = "Example walkthrough"
153
+ content = "Try out a real Ethereum application when finished here"
154
+ placement = "top"
155
+ >
156
+ < Box fontSize = { { base : "sm" , md : "md" } } >
157
+ < Button variant = "link" isDisabled display = "block" >
158
+ Browse other artwork
127
159
</ Button >
128
- < Button
129
- variant = "link"
130
- isDisabled
131
- leftIcon = { < Icon as = { RiPriceTag2Line } fontSize = "xs" /> }
132
- >
133
- Auction item
160
+ < Button variant = "link" isDisabled >
161
+ Mint new NFT
134
162
</ Button >
135
- < Button
136
- variant = "link"
137
- isDisabled
138
- leftIcon = { < Icon as = { RiFileTransferLine } fontSize = "xs" /> }
139
- >
140
- Transfer item
141
- </ Button >
142
- </ Flex >
143
- </ Flex >
144
- < Button variant = "link" isDisabled >
145
- Browse other artwork
146
- </ Button >
147
- < Button variant = "link" isDisabled >
148
- Mint new NFT
149
- </ Button >
163
+ </ Box >
164
+ </ NotificationPopover >
150
165
</ Box >
151
166
</ Web3App >
152
167
</ motion . div >
0 commit comments