-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathindex.tsx
62 lines (59 loc) · 2.14 KB
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/** @jsxImportSource theme-ui */
import React from 'react'
import { Button, Flex, Text } from '@ape.swap/uikit'
import Bnb from './grayChains/bnb'
import Poly from './grayChains/poly'
import Tlos from './grayChains/Tlos'
import Arbitrum from './grayChains/Arbitrum'
import { styles } from './styles'
import { Box } from 'theme-ui'
import { useHomepageStats } from 'state/hooks'
import CountUp from 'react-countup'
import { useTranslation } from 'contexts/Localization'
import { Link } from 'react-router-dom'
const DefiRedefined = () => {
const rawStats = useHomepageStats()
const { t } = useTranslation()
return (
<Flex sx={styles.slideContainer}>
<Text sx={styles.slideTitle}>{t('DeFi, Redefined')}</Text>
<Text sx={styles.slideSubtitle}>
{t('Join our growing network of')}{' '}
{rawStats?.partnerCount && (
<Text sx={styles.counterText}>
<CountUp end={rawStats?.partnerCount} decimals={0} duration={1} separator="," />{' '}
</Text>
)}
{t('communities that are building project-owned liquidity through Treasury Bills.')}
</Text>
<Flex sx={{ alignItems: 'center', marginTop: ['25px', '25px', '30px'] }}>
<Text sx={styles.availableBills}>{t('BILLS AVAILABLE ON')}</Text>
<Bnb sx={{ marginRight: '10px' }} />
<Poly sx={{ marginRight: '10px' }} />
<Tlos sx={{ marginRight: '10px' }} />
<Arbitrum />
</Flex>
<Flex sx={styles.billImage}>
<Box sx={{ ...styles.image, backgroundImage: `url('/images/homepage-0.jpg')` }} />
</Flex>
<Flex sx={styles.buttonContainer}>
<Button
variant="secondary"
sx={styles.learnMoreButton}
onClick={() =>
window.open(
'https://apeswap.gitbook.io/apeswap-finance/product-and-features/raise/treasury-bills',
'_blank',
)
}
>
{t('Learn more')}
</Button>
<Link to="/treasury-bills">
<Button sx={{ fontSize: ['16px', '14px', '18px'], width: '137px' }}>{t('Buy a bill')}</Button>
</Link>
</Flex>
</Flex>
)
}
export default DefiRedefined