File size: 342 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { Html, Head, Main, NextScript } from 'next/document'
import { Abel } from 'next/font/google'

// eslint-disable-next-line no-unused-vars
const abel = Abel({ weight: '400' })

export default function Document() {
  return (
    <Html>
      <Head />
      <body>
        <Main />
        <NextScript />
      </body>
    </Html>
  )
}