From 5de8ce08de9445e7d0cfbb2918597b9401518c85 Mon Sep 17 00:00:00 2001 From: ben2x4 <86395884+ben2x4@users.noreply.github.com> Date: Sat, 24 Dec 2022 11:37:17 -0800 Subject: [PATCH] update copy for migration message (#297) * update copy for migration message * update link color & add underline on hover Co-authored-by: rawasabi <102771198+rawasabi@users.noreply.github.com> --- components/MigrationCard.tsx | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/components/MigrationCard.tsx b/components/MigrationCard.tsx index d953655..2d58e1e 100644 --- a/components/MigrationCard.tsx +++ b/components/MigrationCard.tsx @@ -5,15 +5,15 @@ export const MigrationCard = () => { return ( - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod - tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim - veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea - commodo consequat. Duis aute irure dolor in reprehenderit in voluptate - velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint - occaecat cupidatat non proident, sunt in culpa qui officia deserunt - mollit anim id est laborum.{' '} - - Link + Junoswap is migrating liquidity to WYND DEX. As part of this transition, + most RAW pools have had swaps and deposits frozen. These pools will be + automatically migrated upon the launch of WYND DEX. Users with liquidity + in these pools may still withdraw funds if they do not want to be + migrated. All other pools are trading as normal and most will also be + automatically migrated. Please see RAW DAO prop 18 for the full details + and list of pools eligible for automatic migration.{' '} + + More details @@ -26,3 +26,10 @@ const StyledCard = styled('div', { backgroundColor: '$colors$dark10', borderRadius: '8px', }) + +const StyledA = styled('a', { + color: '$textColors$brand', + '&:hover': { + textDecoration: 'underline', + }, +})