Skip to content
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
20 changes: 16 additions & 4 deletions src/modules/rewards/components/DashboardSectionHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { FC } from 'react';
import { css } from 'styled-components';

//components
import { Box, Button, Points, Text } from 'blocks';
import { Box, Button, Link, Points, Text } from 'blocks';

export type DashboardSectionHeaderProps = {
onGetStarted: () => void;
Expand Down Expand Up @@ -46,15 +46,27 @@ const DashboardSectionHeader: FC<DashboardSectionHeaderProps> = ({ onGetStarted
variant="h4-semibold"
color="text-on-light-bg"
>
Push Points S1 Ends on Feb 28!
Push Points S1 has Ended!
</Text>
<Box maxWidth={{ tb: 'auto', initial: '607px' }}>
<Text
variant="bl-regular"
color="text-on-light-bg"
>
Claim all tasks and prepare for the end of S1 of Push Reward Points. Prizes will be announced on Feb
25th. Leaderboards snapshot on Mar 1, 2025.
Push Chain Rewards S2 coming soon! Find out more at{' '}
<Link
to="https://x.com/PushChain"
target="_blank"
textProps={{
variant: 'bl-regular',
color: 'text-on-light-bg',
css: css`
display: inline;
`,
}}
>
Push Chain
</Link>
</Text>
</Box>
</Box>
Expand Down
2 changes: 1 addition & 1 deletion src/structure/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const RewardsHeaderLink = ({ caip10WalletAddress }: { caip10WalletAddress: strin
>
{userDetails && userDetails?.totalPoints > 0 ? userDetails?.totalPoints?.toLocaleString() : ''}
</Text>
<Lozenge icon={<Star />}>ENDING SOON</Lozenge>
<Lozenge icon={<Star />}>ENDED</Lozenge>
</Box>
</Link>
</Box>
Expand Down
Loading