2022-04-19 08:15:54 +00:00
|
|
|
import {Html, Head, Main, NextScript} from 'next/document'
|
2022-03-23 04:21:59 +00:00
|
|
|
|
|
|
|
export default function Document() {
|
|
|
|
return (
|
|
|
|
<Html>
|
|
|
|
<Head>
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com"/>
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="true"/>
|
2022-04-19 08:15:54 +00:00
|
|
|
<link
|
|
|
|
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap"
|
|
|
|
rel="stylesheet"/>
|
2022-03-23 04:21:59 +00:00
|
|
|
</Head>
|
|
|
|
<body>
|
2022-04-19 08:15:54 +00:00
|
|
|
<Main/>
|
|
|
|
<NextScript/>
|
2022-03-23 04:21:59 +00:00
|
|
|
</body>
|
|
|
|
</Html>
|
|
|
|
)
|
|
|
|
}
|