summaryrefslogtreecommitdiffstats
path: root/components/Meta.js
diff options
context:
space:
mode:
Diffstat (limited to 'components/Meta.js')
-rw-r--r--components/Meta.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/components/Meta.js b/components/Meta.js
deleted file mode 100644
index d7a2e17..0000000
--- a/components/Meta.js
+++ /dev/null
@@ -1,24 +0,0 @@
-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;