summaryrefslogtreecommitdiffstats
path: root/frontend/components/Meta.js
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-05-09 11:25:33 -0400
committerWes Bos <wesbos@gmail.com>2018-05-09 11:25:33 -0400
commit8ed7d5b734ba588fe0570e0e22f21a0fcda13422 (patch)
tree54bf1cf6370eeae7e3217f26a49e6b021ae7d8a7 /frontend/components/Meta.js
parentad3671675719eb11a81245bffbe0fb18880b479b (diff)
Moving styles to folder
Diffstat (limited to 'frontend/components/Meta.js')
-rw-r--r--frontend/components/Meta.js9
1 files changed, 1 insertions, 8 deletions
diff --git a/frontend/components/Meta.js b/frontend/components/Meta.js
index bee5a69..fe9c29f 100644
--- a/frontend/components/Meta.js
+++ b/frontend/components/Meta.js
@@ -1,21 +1,14 @@
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="/static/favicon.png" />
<link rel="stylesheet" type="text/css" href="/static/nprogress.css" />
-
- <title>Sick Fits</title>
+ <title>Sick Fits!</title>
</Head>
</div>
);