15 lines
333 B
JavaScript
15 lines
333 B
JavaScript
import React from 'react';
|
|
import './style.scss';
|
|
|
|
export default () => (
|
|
<div className="page-header">
|
|
<div className="container">
|
|
<h1>Ethereum Report</h1>
|
|
<p>
|
|
We’ve interviewed 100+ developers to showcase the biggest opportunities in the
|
|
Ethereum ecosystem
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|