|
|
|
@ -1,31 +1,30 @@
|
|
|
|
|
import React from 'react'
|
|
|
|
|
import Logo from './svg/Logo'
|
|
|
|
|
|
|
|
|
|
const Header = (props) => (
|
|
|
|
|
<div className="header">
|
|
|
|
|
const Header = ({ enableHeroText }) => (
|
|
|
|
|
<div className="header mt3 mb4">
|
|
|
|
|
<div className="header-content">
|
|
|
|
|
<a href="/"><Logo /></a>
|
|
|
|
|
<h2>The easiest way to create images from source code. Start typing, or drag a file into the text area to get started.</h2>
|
|
|
|
|
<a className="mb3" href="/"><Logo /></a>
|
|
|
|
|
{ enableHeroText ? (<h2>The easiest way to create images from source code.<br/> Start typing, or drag a file into the text area to get started.</h2>) : null }
|
|
|
|
|
</div>
|
|
|
|
|
<style jsx>{`
|
|
|
|
|
.header {
|
|
|
|
|
margin: 36px 0 72px;
|
|
|
|
|
width: 632px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header-content {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header-content a {
|
|
|
|
|
height: 128px;
|
|
|
|
|
height: 64px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
max-width: 456px;
|
|
|
|
|
}
|
|
|
|
|
`}</style>
|
|
|
|
|
</div>
|
|
|
|
|