2021-01-09 17:50:45 +08:00
|
|
|
import Document, { Html, Head, Main, NextScript } from 'next/document'
|
|
|
|
class MyDocument extends Document {
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Html lang="en">
|
|
|
|
<Head>
|
2021-01-10 14:31:38 +08:00
|
|
|
<link rel="apple-touch-icon" sizes="76x76" href="/static/favicons/apple-touch-icon.png" />
|
2021-01-09 17:50:45 +08:00
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
type="image/png"
|
2021-01-10 14:31:38 +08:00
|
|
|
sizes="32x32"
|
|
|
|
href="/static/favicons/favicon-32x32.png"
|
2021-01-09 17:50:45 +08:00
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
type="image/png"
|
2021-01-10 14:31:38 +08:00
|
|
|
sizes="16x16"
|
|
|
|
href="/static/favicons/favicon-16x16.png"
|
|
|
|
/>
|
|
|
|
<link rel="manifest" href="/static/favicons/site.webmanifest" />
|
|
|
|
<link rel="mask-icon" href="/static/favicons/safari-pinned-tab.svg" color="#5bbad5" />
|
|
|
|
<meta name="msapplication-TileColor" content="#000000" />
|
|
|
|
<meta name="theme-color" content="#000000" />
|
|
|
|
<link rel="alternate" type="application/rss+xml" href="/static/favicons/index.xml" />
|
2021-01-10 16:55:24 +08:00
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
|
2021-01-10 14:31:38 +08:00
|
|
|
<link
|
|
|
|
rel="preload"
|
|
|
|
as="style"
|
|
|
|
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap"
|
|
|
|
media="print"
|
2021-01-10 16:55:24 +08:00
|
|
|
onLoad="this.media='all'"
|
2021-01-10 14:31:38 +08:00
|
|
|
/>
|
|
|
|
<noscript>
|
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap"
|
|
|
|
/>
|
|
|
|
</noscript>
|
2021-01-10 15:14:26 +08:00
|
|
|
<link
|
|
|
|
rel="preload"
|
|
|
|
href="https://cdn.jsdelivr.net/npm/katex@0.10.2/dist/fonts/KaTeX_Main-Regular.woff2"
|
|
|
|
as="font"
|
|
|
|
type="font/woff2"
|
2021-01-10 16:55:24 +08:00
|
|
|
crossOrigin="anonymous"
|
2021-01-10 15:14:26 +08:00
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="preload"
|
|
|
|
href="https://cdn.jsdelivr.net/npm/katex@0.10.2/dist/fonts/KaTeX_Math-Italic.woff2"
|
|
|
|
as="font"
|
|
|
|
type="font/woff2"
|
2021-01-10 16:55:24 +08:00
|
|
|
crossOrigin="anonymous"
|
2021-01-10 15:14:26 +08:00
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="preload"
|
|
|
|
href="https://cdn.jsdelivr.net/npm/katex@0.10.2/dist/fonts/KaTeX_Size2-Regular.woff2"
|
|
|
|
as="font"
|
|
|
|
type="font/woff2"
|
2021-01-10 16:55:24 +08:00
|
|
|
crossOrigin="anonymous"
|
2021-01-10 15:14:26 +08:00
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="preload"
|
|
|
|
href="https://cdn.jsdelivr.net/npm/katex@0.10.2/dist/fonts/KaTeX_Size4-Regular.woff2"
|
|
|
|
as="font"
|
|
|
|
type="font/woff2"
|
2021-01-10 16:55:24 +08:00
|
|
|
crossOrigin="anonymous"
|
2021-01-10 15:14:26 +08:00
|
|
|
/>
|
2021-01-10 14:31:38 +08:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
href="https://cdn.jsdelivr.net/npm/katex@0.10.2/dist/katex.min.css"
|
|
|
|
integrity="sha384-yFRtMMDnQtDRO8rLpMIKrtPCD5jdktao2TV19YiZYWMDkUR5GQZR/NOVTdquEx1j"
|
2021-01-10 16:55:24 +08:00
|
|
|
crossOrigin="anonymous"
|
2021-01-09 17:50:45 +08:00
|
|
|
/>
|
|
|
|
</Head>
|
2021-01-10 14:39:42 +08:00
|
|
|
<body className="bg-white text-black dark:bg-gray-900 dark:text-white antialiased">
|
|
|
|
<Main />
|
|
|
|
<NextScript />
|
2021-01-09 17:50:45 +08:00
|
|
|
</body>
|
|
|
|
</Html>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default MyDocument
|