live.umm.gay/web/src/pages/_document.tsx

21 lines
410 B
TypeScript

import { Html, Head, Main, NextScript } from 'next/document'
export default function Document() {
return (
<Html lang="en">
<Head />
<body>
<div className="page-wrapper">
<Main />
</div>
<footer>
<code>live.umm.gay</code> by <a href="https://som.codes/">charlotte som</a>
</footer>
<NextScript />
</body>
</Html>
)
}