import { Html, Head, Main, NextScript } from 'next/document'

export default function Document() {
    return (
        <Html lang="en">
            <Head />
            <body className="theme-blue">
                <Main />
                <NextScript />
            </body>
        </Html>
    )
}