import * as React from 'react';
import * as _ from 'lodash';
import styled from 'styled-components';
import { ChapterLink } from 'ts/@next/components/chapter_link';
import { Column, Section, Wrap } from 'ts/@next/components/layout';
import { Link } from 'ts/@next/components/link';
import { Separator } from 'ts/@next/components/separator';
import { SiteWrap } from 'ts/@next/components/siteWrap';
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-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 blockchain. ',
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: '#',
},
];
const Highlight = ({ highlight }) => (
<>
{highlight.text}
Read Article
>
);
export const NextAboutPress = () => (
Our MissionTeamPressJobsPress HighlightsWant to write about 0x? Get in touch, or download our press kit.
{_.map(highlights, (highlight, index) => )}
);