-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ExpiringCFGRewardsBanner component to Header
- Loading branch information
JP Angelle
committed
Jan 18, 2024
1 parent
d033bc4
commit 7d0ce81
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { Anchor, Box, Card, Paragraph } from 'grommet' | ||
|
||
export const ExpiringCFGRewardsBanner = () => ( | ||
<Card | ||
margin={{ top: 'medium' }} | ||
pad={{ top: 'xsmall', bottom: 'xsmall', left: 'medium', right: 'medium' }} | ||
style={{ | ||
backgroundColor: '#fff5da', | ||
}} | ||
> | ||
<Box> | ||
<Paragraph> | ||
Claim your rewards until 29/01/2024 3:01pm CET. After this day, users will not be able to claim their CFG | ||
rewards. Check <Anchor href="/rewards" label="here" /> if there are still unclaimed rewards. Read more{' '} | ||
<Anchor href="https://gov.centrifuge.io/t/cp81-unclaimed-tinlake-rewards/5885/4" label="here" />. | ||
</Paragraph> | ||
</Box> | ||
</Card> | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters