2021-12-09 07:39:20 +00:00
|
|
|
import { Html, Head, Main, NextScript } from 'next/document'
|
2022-05-09 13:04:36 +00:00
|
|
|
import { ENV_CONFIG } from 'common/envs/constants'
|
2021-12-09 07:39:20 +00:00
|
|
|
|
|
|
|
export default function Document() {
|
|
|
|
return (
|
2021-12-11 03:35:21 +00:00
|
|
|
<Html data-theme="mantic" className="min-h-screen">
|
2021-12-16 04:52:07 +00:00
|
|
|
<Head>
|
2022-03-09 02:43:30 +00:00
|
|
|
<link rel="icon" href={ENV_CONFIG.faviconPath} />
|
2021-12-09 07:39:20 +00:00
|
|
|
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
|
|
<link
|
|
|
|
rel="preconnect"
|
|
|
|
href="https://fonts.gstatic.com"
|
|
|
|
crossOrigin="true"
|
|
|
|
/>
|
|
|
|
<link
|
2022-02-06 09:23:45 +00:00
|
|
|
href="https://fonts.googleapis.com/css2?family=Major+Mono+Display&family=Readex+Pro:wght@400;600;700&display=swap"
|
2021-12-09 07:39:20 +00:00
|
|
|
rel="stylesheet"
|
|
|
|
/>
|
2022-05-09 17:38:33 +00:00
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
href="https://cdn.jsdelivr.net/npm/instantsearch.css@7.4.5/themes/satellite-min.css"
|
|
|
|
integrity="sha256-TehzF/2QvNKhGQrrNpoOb2Ck4iGZ1J/DI4pkd2oUsBc="
|
|
|
|
crossOrigin="anonymous"
|
|
|
|
/>
|
2021-12-16 04:52:07 +00:00
|
|
|
</Head>
|
|
|
|
|
2022-02-11 18:40:22 +00:00
|
|
|
<body className="font-readex-pro bg-base-200 min-h-screen">
|
2021-12-09 07:39:20 +00:00
|
|
|
<Main />
|
|
|
|
<NextScript />
|
|
|
|
</body>
|
|
|
|
</Html>
|
|
|
|
)
|
|
|
|
}
|