Merging this separately so the commit with the tooling change is readable. This is a follow-on to #1167 which turned prettier on.
24 lines
475 B
JavaScript
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 Retina-ready Fast Consistent
|
|
Hackable No tracking
|
|
</p>
|
|
|
|
<style jsx>{`
|
|
.highlights {
|
|
font-style: italic;
|
|
}
|
|
`}</style>
|
|
</section>
|
|
)
|