diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2019-01-05 01:44:25 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2019-01-05 01:44:25 +0800 |
commit | 4e4de07e69d401a1cd220512560c995fbd0c4801 (patch) | |
tree | 2c9bf2c0b03c0537b921bab64fa602e18a8e639c /packages/website | |
parent | 1b65efb38c4de06745280ba75388def8e62b7a58 (diff) | |
download | dexon-sol-tools-4e4de07e69d401a1cd220512560c995fbd0c4801.tar dexon-sol-tools-4e4de07e69d401a1cd220512560c995fbd0c4801.tar.gz dexon-sol-tools-4e4de07e69d401a1cd220512560c995fbd0c4801.tar.bz2 dexon-sol-tools-4e4de07e69d401a1cd220512560c995fbd0c4801.tar.lz dexon-sol-tools-4e4de07e69d401a1cd220512560c995fbd0c4801.tar.xz dexon-sol-tools-4e4de07e69d401a1cd220512560c995fbd0c4801.tar.zst dexon-sol-tools-4e4de07e69d401a1cd220512560c995fbd0c4801.zip |
feat(website): add link underneath the first feature in market maker page
Diffstat (limited to 'packages/website')
-rw-r--r-- | packages/website/ts/pages/market_maker.tsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/website/ts/pages/market_maker.tsx b/packages/website/ts/pages/market_maker.tsx index e5e28aac3..b374e5a2f 100644 --- a/packages/website/ts/pages/market_maker.tsx +++ b/packages/website/ts/pages/market_maker.tsx @@ -16,6 +16,12 @@ const offersData = [ title: 'Comprehensive Tutorials', description: 'Stay on the bleeding edge of crypto by learning how to market make on decentralized exchanges. The network of 0x relayers provides market makers a first-mover advantage to capture larger spreads, find arbitrage opportunities, and trade on new types of exchanges like prediction markets and non-fungible token marketplaces.', + links: [ + { + label: 'Explore the Docs', + url: `${WebsitePaths.Wiki}#Market-Making-on-0x`, + }, + ], }, { icon: 'generateRevenueForYourBusiness-large', @@ -87,6 +93,7 @@ export class NextMarketMaker extends React.Component { isInlineIcon={true} iconSize={240} fontSize="medium" + actions={item.links} /> ))} </Section> |