XeNote/pages/_document.tsx

18 lines
413 B
TypeScript
Raw Normal View History

2023-12-26 01:26:17 +00:00
import { Html, Head, Main, NextScript } from 'next/document'
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>
)
}