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', + }, +})