/ pages / _document.js
_document.js
 1  import Document, { Head, Main, NextScript } from 'next/document';
 2  import React from 'react';
 3  
 4  export default class MyDocument extends Document {
 5    render() {
 6      return (
 7        <html lang="en">
 8          <Head>
 9            <title>ETH REPORT 2018 | ETH PRIZE</title>
10            <meta name="description" content="We've interviewed 100+ developers to showcase the biggest opportunities in the Ethereum ecosystem" />
11            <meta name="viewport" content="width=device-width, initial-scale=1" />
12            <link rel="stylesheet" href="_next/static/style.css" />
13            <link rel="stylesheet" type="text/css" charSet="UTF-8" href="//cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick.min.css" />
14            <link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick-theme.min.css" />
15            <link href="//fonts.googleapis.com/css?family=Roboto+Mono:400,700" rel="stylesheet" />
16            <link rel="apple-touch-icon" sizes="57x57" href="static/icons/apple-icon-57x57.png" />
17            <link rel="apple-touch-icon" sizes="60x60" href="static/icons/apple-icon-60x60.png" />
18            <link rel="apple-touch-icon" sizes="72x72" href="static/icons/apple-icon-72x72.png" />
19            <link rel="apple-touch-icon" sizes="76x76" href="static/icons/apple-icon-76x76.png" />
20            <link rel="apple-touch-icon" sizes="114x114" href="static/icons/apple-icon-114x114.png" />
21            <link rel="apple-touch-icon" sizes="120x120" href="static/icons/apple-icon-120x120.png" />
22            <link rel="apple-touch-icon" sizes="144x144" href="static/icons/apple-icon-144x144.png" />
23            <link rel="apple-touch-icon" sizes="152x152" href="static/icons/apple-icon-152x152.png" />
24            <link rel="apple-touch-icon" sizes="180x180" href="static/icons/apple-icon-180x180.png" />
25            <link rel="icon" type="image/png" sizes="192x192" href="static/icons/android-icon-192x192.png" />
26            <link rel="icon" type="image/png" sizes="32x32" href="static/icons/favicon-32x32.png" />
27            <link rel="icon" type="image/png" sizes="96x96" href="static/icons/favicon-96x96.png" />
28            <link rel="icon" type="image/png" sizes="16x16" href="static/icons/favicon-16x16.png" />
29            <link rel="manifest" href="static/icons/manifest.json" />
30            <link rel="shortcut icon" href="static/icons/favicon.ico" />
31          </Head>
32          <body>
33            <Main />
34            <NextScript />
35          </body>
36        </html>
37      );
38    }
39  }