mirror of
https://github.com/status-im/ETHReport.git
synced 2025-02-21 02:08:14 +00:00
22 lines
756 B
JavaScript
22 lines
756 B
JavaScript
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 world’s best
|
||
cryptocurrency community and ship great products that actually improve the lives of as many
|
||
people as possible.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
);
|
||
|
||
export default ContentBlurb;
|