diff options
author | Francesco Agosti <francesco.agosti93@gmail.com> | 2018-12-18 09:25:11 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-18 09:25:11 +0800 |
commit | b7a8c871d236c575b31ace218d9621ce35d647b4 (patch) | |
tree | 4f93639a1534af5713aa149b43fd0b8c2d20aef6 /packages | |
parent | df48539d41e0ed3d37299a81f56f0f97dbf6e68a (diff) | |
parent | 230236d4d723c03201fa09913c8576ee8b97cb5c (diff) | |
download | dexon-sol-tools-b7a8c871d236c575b31ace218d9621ce35d647b4.tar dexon-sol-tools-b7a8c871d236c575b31ace218d9621ce35d647b4.tar.gz dexon-sol-tools-b7a8c871d236c575b31ace218d9621ce35d647b4.tar.bz2 dexon-sol-tools-b7a8c871d236c575b31ace218d9621ce35d647b4.tar.lz dexon-sol-tools-b7a8c871d236c575b31ace218d9621ce35d647b4.tar.xz dexon-sol-tools-b7a8c871d236c575b31ace218d9621ce35d647b4.tar.zst dexon-sol-tools-b7a8c871d236c575b31ace218d9621ce35d647b4.zip |
Merge pull request #1452 from 0xProject/feature/website/0x-org-flawless
[website] 0x org flawless
Diffstat (limited to 'packages')
3 files changed, 10 insertions, 15 deletions
diff --git a/packages/website/ts/@next/components/footer.tsx b/packages/website/ts/@next/components/footer.tsx index 1e4d7789b..fedae5a1b 100644 --- a/packages/website/ts/@next/components/footer.tsx +++ b/packages/website/ts/@next/components/footer.tsx @@ -41,7 +41,7 @@ const linkRows: LinkRows[] = [ links: [ { url: WebsitePaths.Docs, text: 'Documentation' }, { url: constants.URL_GITHUB_ORG, text: 'GitHub', shouldOpenInNewTab: true }, - { url: constants.URL_PROTOCOL_SPECIFICATION, text: 'Protogcol Spec', shouldOpenInNewTab: true }, + { url: constants.URL_PROTOCOL_SPECIFICATION, text: 'Protocol Spec', shouldOpenInNewTab: true }, ], }, { diff --git a/packages/website/ts/@next/components/sections/landing/about.tsx b/packages/website/ts/@next/components/sections/landing/about.tsx index e7346a797..bf2577581 100644 --- a/packages/website/ts/@next/components/sections/landing/about.tsx +++ b/packages/website/ts/@next/components/sections/landing/about.tsx @@ -39,9 +39,9 @@ export const SectionLandingAbout = () => ( /> <FlexWrap as="dl"> - <Figure value="166,976" description="Total Transactions" /> + <Figure value="353K" description="Total Transactions" /> - <Figure value="$216M" description="Total Volume" /> + <Figure value="$447M" description="Total Volume" /> <Figure value="30+" description="Total Projects" /> </FlexWrap> diff --git a/packages/website/ts/@next/components/sections/landing/cta.tsx b/packages/website/ts/@next/components/sections/landing/cta.tsx index d0429755c..ec7f5d961 100644 --- a/packages/website/ts/@next/components/sections/landing/cta.tsx +++ b/packages/website/ts/@next/components/sections/landing/cta.tsx @@ -1,28 +1,23 @@ import * as React from 'react'; -import {BlockIconLink} from 'ts/@next/components/blockIconLink'; -import {Section} from 'ts/@next/components/newLayout'; +import { BlockIconLink } from 'ts/@next/components/blockIconLink'; +import { Section } from 'ts/@next/components/newLayout'; -import {AnimatedChatIcon} from 'ts/@next/components/animatedChatIcon'; -import {AnimatedCompassIcon} from 'ts/@next/components/animatedCompassIcon'; +import { AnimatedChatIcon } from 'ts/@next/components/animatedChatIcon'; +import { AnimatedCompassIcon } from 'ts/@next/components/animatedCompassIcon'; +import { WebsitePaths } from 'ts/types'; interface Props { onContactClick?: () => void; } export const SectionLandingCta = (props: Props) => ( - <Section - isPadded={false} - isFlex={true} - maxWidth="auto" - wrapWidth="100%" - flexBreakpoint="900px" - > + <Section isPadded={false} isFlex={true} maxWidth="auto" wrapWidth="100%" flexBreakpoint="900px"> <BlockIconLink iconComponent={<AnimatedCompassIcon />} title="Ready to build on 0x?" linkLabel="Get Started" - linkUrl="https://0x.org/docs" + linkUrl={WebsitePaths.Docs} /> <BlockIconLink iconComponent={<AnimatedChatIcon />} |