mirror of
https://github.com/primer/css.git
synced 2024-11-30 11:17:05 +03:00
52 lines
2.0 KiB
JavaScript
52 lines
2.0 KiB
JavaScript
import React from 'react'
|
|
import Document, {Head, Main, NextScript} from 'next/document'
|
|
import {ServerStyleSheet} from 'styled-components'
|
|
import {getAssetPath, CommonStyles, CommonScripts} from '../docs/utils'
|
|
|
|
export default class MyDocument extends Document {
|
|
static getInitialProps({renderPage}) {
|
|
const sheet = new ServerStyleSheet()
|
|
const page = renderPage(App => props => sheet.collectStyles(<App {...props} />))
|
|
return {
|
|
...page,
|
|
renderedStyles: sheet.getStyleElement()
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const {files, renderedStyles} = this.props
|
|
|
|
return (
|
|
<html lang="en">
|
|
<Head>
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-126681523-2" />
|
|
<script async href={getAssetPath('analytics.js')} />
|
|
<meta charSet="utf8" />
|
|
<link rel="icon" href={getAssetPath('favicon.png')} />
|
|
<link rel="apple-touch-icon" href={getAssetPath('apple-touch-icon.png')} />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<meta property="og:title" content="Primer CSS" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://primer.style/css/" />
|
|
<meta property="og:description" content="CSS for GitHub's Primer design system" />
|
|
<meta
|
|
property="og:image"
|
|
content="https://user-images.githubusercontent.com/586552/47590375-121cad80-d93a-11e8-89f2-a1cf108e0548.png"
|
|
/>
|
|
<meta property="og:image:width" content="1200" />
|
|
<meta property="og:image:height" content="630" />
|
|
<meta property="twitter:card" content="summary_large_image" />
|
|
<meta property="twitter:site" content="@githubprimer" />
|
|
<CommonStyles />
|
|
{renderedStyles}
|
|
</Head>
|
|
<body data-files={JSON.stringify(files)}>
|
|
<Main />
|
|
<NextScript />
|
|
<CommonScripts />
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|
|
}
|