mirror of
https://github.com/status-im/ETHReport.git
synced 2025-02-03 10:03:37 +00:00
Adding middle content blurb
This commit is contained in:
parent
9f3702064a
commit
40752b9144
21
components/contentBlurb/index.js
Normal file
21
components/contentBlurb/index.js
Normal file
@ -0,0 +1,21 @@
|
||||
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;
|
9
components/contentBlurb/style.scss
Normal file
9
components/contentBlurb/style.scss
Normal file
@ -0,0 +1,9 @@
|
||||
@import './assets/styles/global.scss';
|
||||
|
||||
.content-blurb {
|
||||
margin-bottom: calculateRem(60);
|
||||
|
||||
p {
|
||||
margin-bottom: calculateRem(16);
|
||||
}
|
||||
}
|
@ -2,6 +2,7 @@ import React from 'react';
|
||||
import PageHeader from '../components/pageHeader';
|
||||
import PageFooter from '../components/pageFooter';
|
||||
import Resources from '../components/resources';
|
||||
import ContentBlurb from '../components/contentBlurb';
|
||||
import BrowseArchives from '../components/browseArchives';
|
||||
import '../styles.scss';
|
||||
|
||||
@ -12,6 +13,7 @@ class PageWrapper extends React.Component {
|
||||
<div className="page-wrapper">
|
||||
<PageHeader />
|
||||
<Resources />
|
||||
<ContentBlurb />
|
||||
<BrowseArchives />
|
||||
<PageFooter />
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user