mirror of
https://github.com/fullstack-cash/fullstack-gatsby-theme-bch-wallet.git
synced 2026-09-22 17:22:05 -07:00
43 lines
716 B
JavaScript
43 lines
716 B
JavaScript
import { Link } from 'gatsby'
|
|
import PropTypes from 'prop-types'
|
|
import React from 'react'
|
|
|
|
const Header = ({ siteTitle }) => (
|
|
<header
|
|
style={{
|
|
background: 'rebeccapurple',
|
|
marginBottom: '1.45rem'
|
|
}}
|
|
>
|
|
<div
|
|
style={{
|
|
margin: '0 auto',
|
|
maxWidth: 960,
|
|
padding: '1.45rem 1.0875rem'
|
|
}}
|
|
>
|
|
<h1 style={{ margin: 0 }}>
|
|
<Link
|
|
to='/'
|
|
style={{
|
|
color: 'white',
|
|
textDecoration: 'none'
|
|
}}
|
|
>
|
|
{siteTitle}
|
|
</Link>
|
|
</h1>
|
|
</div>
|
|
</header>
|
|
)
|
|
|
|
Header.propTypes = {
|
|
siteTitle: PropTypes.string
|
|
}
|
|
|
|
Header.defaultProps = {
|
|
siteTitle: ''
|
|
}
|
|
|
|
export default Header
|