Commit b6fa6490 authored by Max Alekseenko's avatar Max Alekseenko

update texts

parent 0dc85911
...@@ -101,13 +101,13 @@ const RewardsDashboard = () => { ...@@ -101,13 +101,13 @@ const RewardsDashboard = () => {
</RewardsDashboardCard> </RewardsDashboardCard>
<RewardsDashboardCard <RewardsDashboardCard
title="Referrals" title="Referrals"
description="Total number of users who joined the program through your referral link." description="Total number of users who have joined the program using your code or referral link."
direction="column-reverse" direction="column-reverse"
> >
<RewardsDashboardCardValue <RewardsDashboardCardValue
label="Referrals" label="Referrals"
value={ `${ numberOfReferrals } user${ numberOfReferrals === 1 ? '' : 's' }` } value={ `${ numberOfReferrals } user${ numberOfReferrals === 1 ? '' : 's' }` }
hint="The number of referrals who registered with your code." hint="The number of referrals who registered with your code/link."
/> />
</RewardsDashboardCard> </RewardsDashboardCard>
<RewardsDashboardCard <RewardsDashboardCard
...@@ -155,7 +155,7 @@ const RewardsDashboard = () => { ...@@ -155,7 +155,7 @@ const RewardsDashboard = () => {
<Flex gap={ 6 } flexDirection={{ base: 'column', md: 'row' }}> <Flex gap={ 6 } flexDirection={{ base: 'column', md: 'row' }}>
<RewardsDashboardCard <RewardsDashboardCard
title="Activity" title="Activity"
description="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." description="Earn merits for your everyday Blockscout activities. You deserve to be rewarded for choosing open-source public goods!"
availableSoon availableSoon
blurFilter blurFilter
> >
...@@ -164,7 +164,7 @@ const RewardsDashboard = () => { ...@@ -164,7 +164,7 @@ const RewardsDashboard = () => {
</RewardsDashboardCard> </RewardsDashboardCard>
<RewardsDashboardCard <RewardsDashboardCard
title="Verify contracts" title="Verify contracts"
description="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." description="Verified contracts are so important for transparency and interaction. Verify your contracts on Blockscout and receive merits for your efforts!" // eslint-disable-line max-len
availableSoon availableSoon
blurFilter blurFilter
> >
...@@ -174,7 +174,15 @@ const RewardsDashboard = () => { ...@@ -174,7 +174,15 @@ const RewardsDashboard = () => {
</Flex> </Flex>
<RewardsDashboardCard <RewardsDashboardCard
title="Badges" title="Badges"
description="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." description={ (
<span>
Collect limited and legendary badges by completing different Blockscout related tasks. Go to{ ' ' }
<LinkExternal href="https://badges.blockscout.com?utm_source=blockscout&utm_medium=merits-dashboard">
the badges website
</LinkExternal>
{ ' ' }to see what{ apos }s available and start your collection!
</span>
) }
direction="row" direction="row"
availableSoon availableSoon
> >
......
...@@ -52,7 +52,7 @@ const RewardsDashboardCard = ({ ...@@ -52,7 +52,7 @@ const RewardsDashboardCard = ({
justifyContent="space-around" justifyContent="space-around"
borderRadius={{ base: 'lg', md: '8px' }} borderRadius={{ base: 'lg', md: '8px' }}
backgroundColor={ useColorModeValue('gray.50', 'whiteAlpha.50') } backgroundColor={ useColorModeValue('gray.50', 'whiteAlpha.50') }
h={{ base: '80px', md: '128px' }} h={{ base: '80px', md: direction === 'row' ? 'auto' : '128px' }}
filter="auto" filter="auto"
blur={ blurFilter ? '4px' : '0' } blur={ blurFilter ? '4px' : '0' }
flex={ direction === 'row' ? 1 : '0 1 auto' } flex={ direction === 'row' ? 1 : '0 1 auto' }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment