Skip to content

Commit 9503d52

Browse files
committed
Add disclaimer to bridge
1 parent b906664 commit 9503d52

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

apps/web/src/components/BridgeModal/BridgeForm.tsx

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { Box, Button, Flex, Heading, Text } from '@zoralabs/zord'
44
import { parseEther } from 'ethers/lib/utils.js'
55
import { Formik } from 'formik'
66
import Image from 'next/image'
7+
import Link from 'next/link'
78
import { useState } from 'react'
89
import { useAccount, useBalance, useNetwork, useSwitchNetwork } from 'wagmi'
910

@@ -97,9 +98,6 @@ export const BridgeForm = () => {
9798
<Heading size="xs" fontWeight="display">
9899
Bridge
99100
</Heading>
100-
<Text mt="x5" color="text2">
101-
Bridge ETH to participate in onchain governance and auctions on L2 chains.
102-
</Text>
103101

104102
<Formik
105103
initialValues={initialValues}
@@ -213,6 +211,25 @@ export const BridgeForm = () => {
213211
Switch network
214212
</Button>
215213
)}
214+
215+
<Box fontSize={12} color="text3" mt="x4">
216+
By proceeding, you agree to Nouns Builder's{' '}
217+
<Link href="/legal" style={{ textDecoration: 'underline' }}>
218+
terms
219+
</Link>
220+
. THIS BRIDGE IS DEPOSIT ONLY. YOU MUST USE ANOTHER BRIDGE TO WITHDRAW
221+
FUNDS BACK TO ETHEREUM MAINNET Learn more about{' '}
222+
<Box
223+
as="a"
224+
rel="noopener noreferrer"
225+
target="_blank"
226+
style={{ textDecoration: 'underline' }}
227+
href="https://docs.zora.co/docs/guides/builder-bridging"
228+
>
229+
bridging
230+
</Box>
231+
.
232+
</Box>
216233
</Box>
217234
)
218235
}}

0 commit comments

Comments
 (0)