Files
shields/frontend/components/header.js
Paul Melnikow 7a664ca3e8 Run prettier (#1866)
Merging this separately so the commit with the tooling change is readable. This is a follow-on to #1167 which turned prettier on.
2018-08-08 17:57:14 -04:00

24 lines
475 B
JavaScript

import { Link } from 'react-router-dom'
import React from 'react'
export default () => (
<section>
<Link to="/">
<img alt="Shields.io" src="/static/logo.svg" />
</Link>
<hr className="spacing" />
<p className="highlights">
Pixel-perfect &nbsp; Retina-ready &nbsp; Fast &nbsp; Consistent &nbsp;
Hackable &nbsp; No tracking
</p>
<style jsx>{`
.highlights {
font-style: italic;
}
`}</style>
</section>
)