hlsitechbot / pages /_document.tsx
hlsitech's picture
Upload 93 files
7bbd534 verified
raw
history blame contribute delete
359 Bytes
import { Html, Head, Main, NextScript } from 'next/document';
import Script from 'next/script';
export default function Document() {
return (
<Html lang="en">
<Head>
<title>Horizon AI Template Free</title>
</Head>
<body suppressHydrationWarning={true}>
<Main />
<NextScript />
</body>
</Html>
);
}