Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release #279

Merged
merged 3 commits into from
Jun 12, 2024
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
4 changes: 2 additions & 2 deletions src/components/Menu/Menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ const data: {

const externalButtons = [
{
externalLink: 'https://staking.synthetix.io',
label: 'Staking App',
externalLink: 'https://liquidity.synthetix.eth.limo/',
label: 'Liquidity App',
},
];

Expand Down
47 changes: 26 additions & 21 deletions src/sections/home/interfaces.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
import {
Flex,
Text,
Box,
Tag,
TagLabel,
LinkBox,
LinkOverlay,
} from '@chakra-ui/react';
import { Flex, Text, Box, LinkBox, LinkOverlay } from '@chakra-ui/react';
import { Logo } from 'src/components';
import { ArrowDiagonal } from 'src/svg';
import { links } from 'src/utils/constants';
Expand Down Expand Up @@ -72,7 +64,7 @@ export const Interfaces = () => {
lineHeight="20px"
color="cyan.500"
>
Stake on V2
Stake SNX
</Text>
</LinkOverlay>
<ArrowDiagonal ml={2} />
Expand All @@ -93,17 +85,6 @@ export const Interfaces = () => {
>
<Flex width="100%" justifyContent="space-between">
<Logo small />
<Tag bgColor="whiteAlpha.300">
<TagLabel
color="white"
fontSize="12px"
lineHeight="16px"
fontWeight={500}
fontFamily="heading"
>
COMING SOON
</TagLabel>
</Tag>
</Flex>
<Text
my="16px"
Expand All @@ -123,6 +104,30 @@ export const Interfaces = () => {
with greater flexibility over which pools and markets you have
exposure to.
</Text>
<LinkBox mt="16px">
<Flex
alignItems="center"
p="10px 16px"
bg="transparent"
border="1px"
borderColor="cyan.500"
borderRadius="4px"
width="fit-content"
>
<LinkOverlay href={links.liquidityApp} target="_blank">
<Text
fontSize="14px"
fontFamily="heading"
fontWeight={700}
lineHeight="20px"
color="cyan.500"
>
Deposit Liquidity
</Text>
</LinkOverlay>
<ArrowDiagonal ml={2} />
</Flex>
</LinkBox>
</Flex>
</Flex>
</Box>
Expand Down
1 change: 1 addition & 0 deletions src/utils/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export const links = {
duneLink: 'https://dune.com/synthetix_community/synthetix-stats',
stakingV2: 'https://staking.synthetix.io/',
stakingV3: 'https://v3.synthetix.io/',
liquidityApp: 'https://liquidity.synthetix.eth.limo/',
stakingGuide: 'https://docs.synthetix.io/staking/staking-guide',
v3IntegrationGuide: 'https://docs.synthetix.io/v/v3/',
governanceApp: 'https://governance.synthetix.io/',
Expand Down
Loading