import * as _ from 'lodash'; import * as React from 'react'; import styled from 'styled-components'; import { AboutPageLayout } from 'ts/@next/components/aboutPageLayout'; import { Button } from 'ts/@next/components/button'; import { Column, FlexWrap, Section } from 'ts/@next/components/newLayout'; import { Separator } from 'ts/@next/components/separator'; import { Heading, Paragraph } from 'ts/@next/components/text'; interface HighlightInterface { logo: string; title?: string; text: string; href: string; } const highlights: HighlightInterface[] = [ { logo: '/images/@next/press/logo-forbes.png', title: 'Forbes', text: '0x Instant is aiming to aid businesses and developers such as news sites, crypto wallets, dApps or price trackers to monetize or add a new revenue stream to their existing pipeline.', href: '#', }, { logo: '/images/@next/press/logo-venturebeat.png', title: 'VentureBeat', text: '0x leads the way for ‘tokenization’ of the world, and collectible game items are next', href: '#', }, { logo: '/images/@next/press/logo-fortune.png', title: 'Fortune', text: 'In the future, many traditional investments like real estate and corporate shares will come in the form of digital tokens that are bought and transferred on a ', href: '#', }, { logo: '/images/@next/press/logo-techcrunch.png', title: 'TechCrunch', text: '0x allows any developer to quickly build their own decentralized cryptocurrency exchange and decide their own fees.', href: '#', }, ]; export const NextAboutPress = () => ( Want to write about 0x? Get in touch, or download our press kit. {_.map(highlights, (highlight, index) => ( ))} } /> ); const Highlight = ({ highlight }) => ( {highlight.title} {highlight.text} ); const HighlightWrap = styled(FlexWrap)` border-top: 1px solid #eaeaea; padding: 30px 0; `;