Design system.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
231 B

  1. import { Html, Head, Main, NextScript } from 'next/document'
  2. export default function Document() {
  3. return (
  4. <Html lang="en">
  5. <Head />
  6. <body>
  7. <Main />
  8. <NextScript />
  9. </body>
  10. </Html>
  11. )
  12. }