53 lines
1.9 KiB
JavaScript
53 lines
1.9 KiB
JavaScript
import Document, { Html, Head, Main, NextScript } from 'next/document'
|
|
import GoogleFonts from 'next-google-fonts'
|
|
|
|
class MyDocument extends Document {
|
|
render() {
|
|
return (
|
|
<Html lang="en">
|
|
<GoogleFonts href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" />
|
|
<Head>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.css"
|
|
integrity="sha384-AfEj0r4/OFrOo5t7NnNe46zW/tFgW6x/bCJG8FqQCEo3+Aro6EYUG4+cU+KJWu/X"
|
|
crossOrigin="anonymous"
|
|
/>
|
|
<link href="/static/favicons/favicon.ico" rel="shortcut icon" />
|
|
<link href="/static/favicons/site.webmanifest" rel="manifest" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com/" crossOrigin="" />
|
|
<link
|
|
href="/static/favicons/apple-touch-icon.png"
|
|
rel="apple-touch-icon"
|
|
sizes="180x180"
|
|
/>
|
|
<link
|
|
href="/static/favicons/favicon-32x32.png"
|
|
rel="icon"
|
|
sizes="32x32"
|
|
type="image/png"
|
|
/>
|
|
<link
|
|
href="/static/favicons/favicon-16x16.png"
|
|
rel="icon"
|
|
sizes="16x16"
|
|
type="image/png"
|
|
/>
|
|
<link color="#00aba9" href="/static/favicons/safari-pinned-tab.svg" rel="mask-icon" />
|
|
<link rel="alternate" type="application/rss+xml" href="/index.xml" />
|
|
<meta content="IE=edge" httpEquiv="X-UA-Compatible" />
|
|
<meta content="#ffffff" name="theme-color" />
|
|
<meta content="#00aba9" name="msapplication-TileColor" />
|
|
<meta content="/static/favicons/browserconfig.xml" name="msapplication-config" />
|
|
</Head>
|
|
<body className="bg-white dark:bg-gray-900 text-black dark:text-white">
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default MyDocument
|