2018-07-17 17:03:40 +02:00

22 lines
756 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react';
import './style.scss';
const ContentBlurb = () => (
<div className="content-blurb">
<div className="container">
<p>
The community behind ETHPrize has interviewed over 100 developers in order to produce this
website which showcases the biggest frustrations and opportunities in the ecosystem.
</p>
<p>
We invite all developers, product managers, designers and #buidlers to use the ideas here
and figure out what to make next so that we can all continue to build the worlds best
cryptocurrency community and ship great products that actually improve the lives of as many
people as possible.
</p>
</div>
</div>
);
export default ContentBlurb;