mirror of https://github.com/sgoudham/carbon.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
724 B
JavaScript
33 lines
724 B
JavaScript
import React from 'react'
|
|
import Logo from './svg/Logo'
|
|
|
|
const Header = ({ enableHeroText }) => (
|
|
<div className="header mb4">
|
|
<div className="header-content">
|
|
<a href="/"><Logo /></a>
|
|
{ enableHeroText ? (<h2 className="mt3">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 {
|
|
width: 632px;
|
|
}
|
|
|
|
.header-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.header-content a {
|
|
height: 64px;
|
|
}
|
|
|
|
h2 {
|
|
text-align: center;
|
|
}
|
|
`}</style>
|
|
</div>
|
|
)
|
|
|
|
export default Header
|