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

49 lines
1.0 KiB
JavaScript

import React from 'react'
import Logo from './svg/Logo'
const Header = ({ enableHeroText }) => (
<header role="banner" 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 {
width: 656px;
}
.header-content {
display: flex;
flex-direction: column;
align-items: center;
}
.header-content a {
height: 64px;
}
h2 {
text-align: center;
max-width: 80vw;
}
@media only screen and (max-width: 756px) {
h2 {
font-size: 2.8vw;
}
}
`}
</style>
</header>
)
export default Header