diff options
author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-12-18 08:23:44 +0800 |
---|---|---|
committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-12-18 08:23:44 +0800 |
commit | 2c24cff9503faed373efc2f1f02e71d2cead4b4f (patch) | |
tree | 66fc07b12422e817039d173ae1ede2b42353aab8 | |
parent | 095cec43421a13855dcb3df033e19cf608021d78 (diff) | |
download | dexon-sol-tools-2c24cff9503faed373efc2f1f02e71d2cead4b4f.tar dexon-sol-tools-2c24cff9503faed373efc2f1f02e71d2cead4b4f.tar.gz dexon-sol-tools-2c24cff9503faed373efc2f1f02e71d2cead4b4f.tar.bz2 dexon-sol-tools-2c24cff9503faed373efc2f1f02e71d2cead4b4f.tar.lz dexon-sol-tools-2c24cff9503faed373efc2f1f02e71d2cead4b4f.tar.xz dexon-sol-tools-2c24cff9503faed373efc2f1f02e71d2cead4b4f.tar.zst dexon-sol-tools-2c24cff9503faed373efc2f1f02e71d2cead4b4f.zip |
Link homepage to Why#cases
-rw-r--r-- | packages/website/ts/@next/components/sections/landing/about.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/website/ts/@next/components/sections/landing/about.tsx b/packages/website/ts/@next/components/sections/landing/about.tsx index 9c2c29446..e7346a797 100644 --- a/packages/website/ts/@next/components/sections/landing/about.tsx +++ b/packages/website/ts/@next/components/sections/landing/about.tsx @@ -5,6 +5,7 @@ import { Button } from 'ts/@next/components/button'; import { Icon, InlineIconWrap } from 'ts/@next/components/icon'; import { Column, FlexWrap, Section } from 'ts/@next/components/newLayout'; import { Paragraph } from 'ts/@next/components/text'; +import { WebsitePaths } from 'ts/types'; interface FigureProps { value: string; @@ -25,7 +26,7 @@ export const SectionLandingAbout = () => ( instruments to assets that could have never existed before. </Paragraph> - <Button href="#" isWithArrow={true} isAccentColor={true}> + <Button href={`${WebsitePaths.Why}#cases`} isWithArrow={true} isAccentColor={true}> Discover how developers use 0x </Button> |