Files
shields/frontend/components/header.js
chris48s 901a7b8a43 Split front end into one page per category (#1808)
- Present 'downloads', 'version', etc as pages
- Don't show any badges on the index page,
  just links to categories.
- Tweak search so we can search all badges
  from the index page, but without rendering
  every badge as soon as we press a key.
2018-08-01 21:02:55 +01:00

28 lines
502 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>
);