Adding middle content blurb

This commit is contained in:
Sharyn 2018-07-17 17:03:40 +02:00
parent 9f3702064a
commit 40752b9144
3 changed files with 32 additions and 0 deletions

View 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 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;

View File

@ -0,0 +1,9 @@
@import './assets/styles/global.scss';
.content-blurb {
margin-bottom: calculateRem(60);
p {
margin-bottom: calculateRem(16);
}
}

View File

@ -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>