23 lines
847 B
JavaScript
23 lines
847 B
JavaScript
import Document, { Head, Main, NextScript } from 'next/document';
|
|
import React from 'react';
|
|
|
|
export default class MyDocument extends Document {
|
|
render() {
|
|
return (
|
|
<html lang="en">
|
|
<Head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="stylesheet" href="_next/static/style.css" />
|
|
<link rel="stylesheet" type="text/css" charset="UTF-8" href="//cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick.min.css" />
|
|
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.6.0/slick-theme.min.css" />
|
|
<link href="//fonts.googleapis.com/css?family=Roboto+Mono:400,700" rel="stylesheet" />
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|
|
}
|