summaryrefslogtreecommitdiffstats
path: root/frontend/components/Meta.js
blob: d7a2e17da820f2a90d47e0bdfd1c0219a0f57bd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import React from 'react';
import Head from 'next/head';
import { injectGlobal } from 'styled-components';

const Meta = () => (
  <div>
    <Head>
      <meta name="viewport" content="width=device-width, initial-scale=1" />
      {injectGlobal`
          html {
            background: white;
          }
        `}
      <meta charSet="utf-8" />
      <link rel="shortcut icon" href="https://wesbos.com/wp-content/themes/wb2014/i/crown-yellow-small.png" />
      <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
      <link rel="stylesheet" type="text/css" href="/static/nprogress.css" />

      <title>Sick Fits</title>
    </Head>
  </div>
);

export default Meta;