| 1 | import Document, { Html, Head, Main, NextScript } from 'next/document' |
| 2 | |
| 3 | class MyDocument extends Document { |
| 4 | render = () => ( |
| 5 | <Html lang="en"> |
| 6 | <Head> |
| 7 | <link rel="icon" href="/favicon.png" type="image/png" /> |
| 8 | <link |
| 9 | rel="apple-touch-icon" |
| 10 | sizes="180x180" |
| 11 | href="/apple-touch-icon-180x180.png" |
| 12 | /> |
| 13 | <link |
| 14 | href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Quicksand:wght@500;700&display=swap" |
| 15 | rel="stylesheet" |
| 16 | /> |
| 17 | </Head> |
| 18 | <body> |
| 19 | <Main /> |
| 20 | <NextScript /> |
| 21 | </body> |
| 22 | </Html> |
| 23 | ) |
| 24 | } |
| 25 | |
| 26 | export default MyDocument |
| 27 |