aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website
diff options
context:
space:
mode:
authorSteve Klebanoff <steve.klebanoff@gmail.com>2018-12-18 05:59:12 +0800
committerSteve Klebanoff <steve.klebanoff@gmail.com>2018-12-18 05:59:12 +0800
commit0e8f0d1d53c5ecc4d7c88457c21ec423d86b2293 (patch)
treedd5231eb01238947556aa84126e37783b8582da2 /packages/website
parentc126d01fe3fa2f170a1c70da6ee2cb497875ef03 (diff)
downloaddexon-sol-tools-0e8f0d1d53c5ecc4d7c88457c21ec423d86b2293.tar
dexon-sol-tools-0e8f0d1d53c5ecc4d7c88457c21ec423d86b2293.tar.gz
dexon-sol-tools-0e8f0d1d53c5ecc4d7c88457c21ec423d86b2293.tar.bz2
dexon-sol-tools-0e8f0d1d53c5ecc4d7c88457c21ec423d86b2293.tar.lz
dexon-sol-tools-0e8f0d1d53c5ecc4d7c88457c21ec423d86b2293.tar.xz
dexon-sol-tools-0e8f0d1d53c5ecc4d7c88457c21ec423d86b2293.tar.zst
dexon-sol-tools-0e8f0d1d53c5ecc4d7c88457c21ec423d86b2293.zip
Fix URLs
Diffstat (limited to 'packages/website')
-rw-r--r--packages/website/ts/@next/pages/instant.tsx12
1 files changed, 4 insertions, 8 deletions
diff --git a/packages/website/ts/@next/pages/instant.tsx b/packages/website/ts/@next/pages/instant.tsx
index 9c820a4e6..a2df3ffc6 100644
--- a/packages/website/ts/@next/pages/instant.tsx
+++ b/packages/website/ts/@next/pages/instant.tsx
@@ -43,7 +43,7 @@ const featuresData = [
},
{
label: 'Explore the Docs',
- url: '#',
+ url: `${WebsitePaths.Wiki}#Get-Started-With-Instant`,
},
],
},
@@ -55,7 +55,7 @@ const featuresData = [
links: [
{
label: 'Learn about affiliate fees',
- url: '#',
+ url: `${WebsitePaths.Wiki}#Learn-About-Affiliate-Fees`,
},
],
},
@@ -67,11 +67,7 @@ const featuresData = [
links: [
{
label: 'Explore AssetBuyer',
- url: '#',
- },
- {
- label: 'Learn about liquidity',
- url: '#',
+ url: `${WebsitePaths.Docs}/asset-buyer`,
},
],
},
@@ -137,7 +133,7 @@ export class Next0xInstant extends React.Component<Props> {
<Banner
heading="Need more flexibility?"
subline="Dive into our docs, or contact us if needed"
- mainCta={{ text: 'Explore the Docs', href: '/docs' }}
+ mainCta={{ text: 'Explore the Docs', href: `${WebsitePaths.Wiki}#Get-Started-With-Instant` }}
secondaryCta={{ text: 'Get in Touch', onClick: this._onOpenContactModal.bind(this) }}
/>
<ModalContact isOpen={this.state.isContactModalOpen} onDismiss={this._onDismissContactModal} />