mirror of
https://github.com/LuauDAO/beachbums-nft-mint-dapp.git
synced 2026-01-09 21:27:59 -05:00
18 lines
353 B
TypeScript
18 lines
353 B
TypeScript
import Document, { Html, Head, Main, NextScript } from 'next/document';
|
|
|
|
class MyDocument extends Document {
|
|
render(): React.ReactElement {
|
|
return (
|
|
<Html>
|
|
<Head />
|
|
<body className="bg-gray-900 text-gray-300">
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default MyDocument;
|