- 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.
28 lines
502 B
JavaScript
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
|
|
Retina-ready
|
|
Fast
|
|
Consistent
|
|
Hackable
|
|
No tracking
|
|
</p>
|
|
|
|
<style jsx>{`
|
|
.highlights {
|
|
font-style: italic;
|
|
}
|
|
`}</style>
|
|
</section>
|
|
);
|