Files
shields/frontend/components/header.js

27 lines
541 B
JavaScript

import { Link } from 'gatsby'
import React from 'react'
import styled from 'styled-components'
import Logo from '../images/logo.svg'
import { VerticalSpace } from './common'
const Highlights = styled.p`
font-style: italic;
`
export default function Header() {
return (
<section>
<Link to="/">
<Logo />
</Link>
<VerticalSpace />
<Highlights>
Pixel-perfect &nbsp; Retina-ready &nbsp; Fast &nbsp; Consistent &nbsp;
Hackable &nbsp; No tracking
</Highlights>
</section>
)
}