Files
shields/frontend/components/meta.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

19 lines
761 B
JavaScript

import React from 'react';
import Head from 'next/head';
const description = `We serve fast and scalable informational images as badges
for GitHub, Travis CI, Jenkins, WordPress and many more services. Use them to
track the state of your projects, or for promotional purposes.`;
export default () => (
<Head>
<title>Shields.io: Quality metadata badges for open source projects</title>
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content={description} />
<link rel="icon" type="image/png" href="favicon.png" />
<link href="/static/main.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Lekton" rel="stylesheet" />
</Head>
);