Add bootstrap

This commit is contained in:
Werner
2023-06-07 08:08:17 -03:00
parent 3e00f03584
commit 214e2c5d02
11 changed files with 288 additions and 463 deletions

View File

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