ETHReport/components/pageHeader/index.js

28 lines
1.0 KiB
JavaScript
Raw Normal View History

import React from 'react';
2018-07-10 12:32:06 +00:00
import AnchorLink from 'react-anchor-link-smooth-scroll';
import getConfig from 'next/config';
import './style.scss';
2018-07-11 13:53:09 +00:00
const { publicRuntimeConfig } = getConfig();
2018-07-10 12:32:06 +00:00
const PageHeader = () => (
2018-07-11 13:53:09 +00:00
<div className="page-header" style={{ backgroundImage: `url(${publicRuntimeConfig.subDirPath}/static/img/header-bg.jpg)` }}>
<div className="container">
<nav className="page-header-nav">
2018-07-17 13:07:37 +00:00
<AnchorLink href="#resources">Resources</AnchorLink>
<AnchorLink href="#browse">Browse Archives</AnchorLink>
</nav>
<img className="logo" src={`${publicRuntimeConfig.subDirPath}/static/img/ETHPrize-logo.png`} alt="ETHPrize logo" />
2018-07-18 08:27:36 +00:00
<h1 className="main-heading" style={{ backgroundImage: `url(${publicRuntimeConfig.subDirPath}/static/img/heading-textured-bg.jpg)` }}>
Eth Report 2018
</h1>
<p>
We&rsquo;ve interviewed 100+ developers to showcase the biggest opportunities in the
Ethereum ecosystem
</p>
</div>
</div>
);
2018-07-10 12:32:06 +00:00
export default PageHeader;