import { Html, Head, Main, NextScript } from 'next/document';
export default function Document() {
return (
<Html>
<Head>
<script>
{`
(function() {
// Insert your JavaScript logic here
console.log("SEATEXT script is active on this page.");
})();
`}
</script>
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}