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.
carbon/components/Header.js

40 lines
821 B
JavaScript

import React from 'react'
import Logo from './svg/Logo'
const Header = ({ enableHeroText }) => (
<div className="header mb4">
<div className="header-content">
<a id="link-home" href="/" aria-label="Home">
7 years ago
<Logo />
</a>
{enableHeroText ? (
<h2 className="mt3">
Create and share beautiful images of your source code.<br /> Start typing or drop a file
7 years ago
into the text area to get started.
</h2>
) : null}
</div>
<style jsx>{`
.header {
7 years ago
width: 656px;
}
.header-content {
display: flex;
flex-direction: column;
align-items: center;
}
.header-content a {
height: 64px;
}
h2 {
text-align: center;
}
`}</style>
</div>
)
export default Header