Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

88 copy changes on landing page #89

Merged
merged 2 commits into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/LoginModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Link from 'next/link'
import { PrimaryButton } from './buttons/PrimaryButton'
import { useConnection } from '@/providers/ConnectionProvider'

const STEPS = ['DELEGATE', 'STAKE TEZ', 'EARN TEZ']
const STEPS = ['DELEGATE', 'STAKE', 'EARN']

export const LoginModal = () => {
const { connect } = useConnection()
Expand Down Expand Up @@ -33,7 +33,7 @@ export const LoginModal = () => {
mb={['30px', '40px']}
color='#171923'
>
Earn rewards with Tezos staking solutions
Stake on Tezos to Earn Rewards
</Text>
<Flex
mb={['30px', '40px']}
Expand Down
2 changes: 1 addition & 1 deletion components/operationModals/Delegate/ConfirmBaker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export const ConfirmBaker = ({
if (response.success) {
setOpHash(response.opHash)
setMessage(
'You have successfully delegated your balance to the baker. You can now (optionally) stake funds with the baker, and potentially earn higher rewards.'
"You have successfully delegated your balance to the baker. If you'd like, you can now stake and potentially earn double rewards!"
)
setSuccess(true)
handleOneStepForward()
Expand Down
5 changes: 3 additions & 2 deletions components/operationModals/Delegate/DelegateStart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ export const DelegateStart = ({
/>
<Header mb='16px'>Delegation</Header>
<Description>
Earn risk-free rewards by delegating to a Tezos baker. Delegated funds
remain in your account, and you can always spend them at will.
In order to stake and earn rewards, you need to delegate your tez first.
Select a baker to do that now. Delegated funds remain in your account.
You can always spend them at will.
</Description>
<Flex pt='24px' mb='30px' fontSize={['14px', '16px']}>
<RoundBorderText step={1} text='DELEGATE' />
Expand Down