mirror of
https://github.com/d0zingcat/nextjs-notion-starter-kit.git
synced 2026-05-13 23:16:47 +00:00
40 lines
871 B
TypeScript
40 lines
871 B
TypeScript
import React from 'react'
|
|
import Document, { Html, Head, Main, NextScript } from 'next/document'
|
|
|
|
export default class MyDocument extends Document {
|
|
render() {
|
|
return (
|
|
<Html lang='en'>
|
|
<Head>
|
|
<link rel='shortcut icon' href='/favicon.ico' />
|
|
|
|
<link
|
|
rel='apple-touch-icon'
|
|
sizes='180x180'
|
|
href='/apple-touch-icon.png'
|
|
/>
|
|
<link
|
|
rel='icon'
|
|
type='image/png'
|
|
sizes='32x32'
|
|
href='/favicon-32x32.png'
|
|
/>
|
|
<link
|
|
rel='icon'
|
|
type='image/png'
|
|
sizes='16x16'
|
|
href='/favicon-16x16.png'
|
|
/>
|
|
|
|
<link rel='manifest' href='/manifest.json' />
|
|
</Head>
|
|
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|
|
}
|