2023-12-26 01:26:17 +00:00
|
|
|
import { Html, Head, Main, NextScript } from 'next/document'
|
2022-03-23 04:21:59 +00:00
|
|
|
|
|
|
|
export default function Document() {
|
2023-12-26 01:26:17 +00:00
|
|
|
return (
|
|
|
|
<Html>
|
|
|
|
<Head>
|
|
|
|
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
|
2024-01-07 19:41:13 +00:00
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/kimeiga/bahunya/dist/bahunya.min.css" />
|
2023-12-26 01:26:17 +00:00
|
|
|
</Head>
|
2024-01-07 19:53:32 +00:00
|
|
|
|
2023-12-26 01:26:17 +00:00
|
|
|
<body>
|
|
|
|
<Main />
|
|
|
|
<NextScript />
|
|
|
|
</body>
|
|
|
|
</Html>
|
|
|
|
)
|
|
|
|
}
|