[site,seo][xs]: add custom _document with lang prop, add description to meta tags, make title larger

This commit is contained in:
João Demenech
2023-07-18 09:38:30 -03:00
parent 349f5bea66
commit 11a4272f16
3 changed files with 19 additions and 2 deletions

13
site/pages/_document.tsx Normal file
View File

@@ -0,0 +1,13 @@
import { Html, Head, Main, NextScript } from 'next/document';
export default function Document() {
return (
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
}