Adding Header component

This commit is contained in:
Jeff Avallone
2019-01-03 07:49:54 -05:00
parent 6f391264be
commit c572501d51
9 changed files with 195 additions and 14 deletions
+28
View File
@@ -0,0 +1,28 @@
import React from 'react';
import { Link } from 'gatsby';
import GitlabIcon from 'react-feather/dist/icons/gitlab';
import style from './style.module.css';
const Header = () => (
<header className={ style.header }>
<h1>
<Link to="/">Regexper</Link>
</h1>
<ul className={ style.list }>
<li>
<a href="https://gitlab.com/javallone/regexper-static" rel="external noopener noreferrer" target="_blank">
<GitlabIcon />
Source on GitLab
</a>
</li>
<li>
<Link to="/privacy">Privacy Policy</Link>
</li>
</ul>
</header>
);
export default Header;
+51
View File
@@ -0,0 +1,51 @@
@import url('../../globals.module.css');
.header {
display: flex;
align-items: center;
background: var(--color-green) var(--gradient-green);
box-shadow: 0 0 1rem color(var(--color-black) alpha(0.7));
padding: 0 var(--content-margin);
margin: 0 calc(-1 * var(--content-margin)) var(--spacing-margin) calc(-1 * var(--content-margin));
position: relative;
color: var(--color-black);
& h1 {
flex-grow: 1;
font-family: 'Bangers', 'cursive';
font-size: 4rem;
font-weight: normal;
display: inline-block;
margin: 0;
line-height: var(--header-height);
text-shadow: 0 0 5px var(--color-green);
}
& a {
text-decoration: none;
display: inline-block;
}
}
.list {
composes: inline-list with-separator-right;
text-align: right;
margin: 1rem 0;
& li {
line-height: 2.4rem;
& a:hover,
& a:active {
text-decoration: underline;
}
& a svg {
display: inline-block;
width: 1em;
height: 1em;
margin-right: 0.5rem;
vertical-align: text-top
}
}
}
+3
View File
@@ -2,10 +2,13 @@ import React from 'react';
import PropTypes from 'prop-types';
import { Helmet } from 'react-helmet';
import Header from 'components/Header';
const Layout = ({ title, children }) => <React.Fragment>
<Helmet>
<title>{ title ? `Regexper - ${ title }` : 'Regexper' }</title>
</Helmet>
<Header />
{ children }
</React.Fragment>;