diff options
Diffstat (limited to 'stepped-solutions/05/frontend/components/Meta.js')
| -rw-r--r-- | stepped-solutions/05/frontend/components/Meta.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/stepped-solutions/05/frontend/components/Meta.js b/stepped-solutions/05/frontend/components/Meta.js new file mode 100644 index 0000000..2b98f92 --- /dev/null +++ b/stepped-solutions/05/frontend/components/Meta.js @@ -0,0 +1,13 @@ +import Head from 'next/head'; + +const Meta = () => ( + <Head> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <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> + </Head> +); + +export default Meta; |
