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'; 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.
); const Figure = (props: FigureProps) => ( {props.value} {props.description} ); 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; `;