XeNote/pages/_document.tsx

16 lines
306 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" />
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
)
}