import * as React from 'react'; import styled from 'styled-components'; 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; description: string; } export const SectionLandingAbout = () => (
Anyone in the world can use 0x to service a wide variety of markets ranging from gaming items to financial instruments to assets that could have never existed before. Discover how developers use 0x
); const Figure = (props: FigureProps) => ( {props.value} {props.description} ); const DeveloperLink = styled(Button)` @media (max-width: 500px) { && { white-space: pre-wrap; line-height: 1.3; } } `; const FigureValue = styled.dt` font-size: 50px; font-weight: 300; margin-bottom: 15px; @media (max-width: 768px) { font-size: 40px; } `; const FigureDescription = styled.dd` font-size: 18px; color: #999999; `;