diff options
| author | Wes Bos <wesbos@gmail.com> | 2017-08-25 09:33:53 -0400 |
|---|---|---|
| committer | Wes Bos <wesbos@gmail.com> | 2017-08-25 09:33:53 -0400 |
| commit | 7af74ff8988961c988f03c95961b70c2918521ae (patch) | |
| tree | d73cd0dd94751b76595b7febcae4162811c2040b /components/Meta.js | |
| parent | 416c2cbae0e69b724876d232bf813eefd7550174 (diff) | |
yay
Diffstat (limited to 'components/Meta.js')
| -rw-r--r-- | components/Meta.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/components/Meta.js b/components/Meta.js new file mode 100644 index 0000000..d851946 --- /dev/null +++ b/components/Meta.js @@ -0,0 +1,16 @@ +import Head from 'next/head' +import Router from 'next/router' +import Nav from './Nav'; + +export default () => ( + <div> + <Head> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <meta charSet="utf-8" /> + <Nav/> + <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"/> + <title>Sick Fits</title> + </Head> + </div> +) |
