diff options
author | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-11-29 22:40:39 +0800 |
---|---|---|
committer | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-11-29 22:45:30 +0800 |
commit | 2103d5c3edddc319fe2404df636db75e771d1474 (patch) | |
tree | 36030faf4c8d767acdf947cb2083f074d809b221 /packages/website/ts/@next/pages | |
parent | a21bca7cf4771d04879036f3406f38276af93e3a (diff) | |
download | dexon-sol-tools-2103d5c3edddc319fe2404df636db75e771d1474.tar.gz dexon-sol-tools-2103d5c3edddc319fe2404df636db75e771d1474.tar.zst dexon-sol-tools-2103d5c3edddc319fe2404df636db75e771d1474.zip |
Cleans up Button
Diffstat (limited to 'packages/website/ts/@next/pages')
-rw-r--r-- | packages/website/ts/@next/pages/landing.tsx | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/packages/website/ts/@next/pages/landing.tsx b/packages/website/ts/@next/pages/landing.tsx index fff9e630d..eb8adbde9 100644 --- a/packages/website/ts/@next/pages/landing.tsx +++ b/packages/website/ts/@next/pages/landing.tsx @@ -1,9 +1,8 @@ import * as React from 'react'; import styled from 'styled-components'; -import { colors } from 'ts/style/colors'; - -import { Button, ButtonTransparent } from 'ts/@next/components/button'; +import { colors } from 'ts/style/colors' +import { Button } from 'ts/@next/components/button'; import { Column, Section, Wrap, WrapCentered } from 'ts/@next/components/layout'; import { SiteWrap } from 'ts/@next/components/siteWrap'; import { Heading, Intro, Text } from 'ts/@next/components/text'; @@ -11,6 +10,7 @@ import { Heading, Intro, Text } from 'ts/@next/components/text'; import logoOutlined from 'ts/@next/icons/illustrations/logo-outlined.svg'; import protocol from 'ts/@next/icons/illustrations/protocol.svg'; + const Icon = styled.div` flex-shrink: 0; `; @@ -23,8 +23,13 @@ export const NextLanding = () => ( <Heading>Powering Decentralized Exchange</Heading> <Intro>0x is the best solution for adding exchange functionality to your business.</Intro> <div> - <Button inline={true}>Get Started</Button> - <ButtonTransparent inline={true}>Learn More</ButtonTransparent> + <Button inline> + Get Started + </Button> + + <Button transparent inline> + Learn More + </Button> </div> </Column> |