* update to eslint 6.8.0 and related packages * Fixes for no-prototype-builtins * Updates for explicit-function-return-type * Add ignores for no-explicit-any * update to eslint 6.8.0 and related packages * Fixes for no-prototype-builtins * Updates for explicit-function-return-type * Add ignores for no-explicit-any * package: activate eslint-config-standard * apply updated eslint configuration * lint: apply eslint feedback after rebase * Update lockfile * Update lockfile * Restore missing deps * Update lockfile * Re-add eslint-plugin-node * Add eslint-plugin-standard and eslint-plugin-react-hooks * Clean lint Co-authored-by: Paul Melnikow <github@paulmelnikow.com>
27 lines
867 B
TypeScript
27 lines
867 B
TypeScript
import React from 'react'
|
|
import { Helmet } from 'react-helmet'
|
|
// @ts-ignore
|
|
import favicon from '../images/favicon.png'
|
|
|
|
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 function Meta(): JSX.Element {
|
|
return (
|
|
<Helmet>
|
|
<title>
|
|
Shields.io: Quality metadata badges for open source projects
|
|
</title>
|
|
<meta charSet="utf-8" />
|
|
<meta content="width=device-width,initial-scale=1" name="viewport" />
|
|
<meta content={description} name="description" />
|
|
<link href={favicon} rel="icon" type="image/png" />
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Lato|Lekton"
|
|
rel="stylesheet"
|
|
/>
|
|
</Helmet>
|
|
)
|
|
}
|