2024-03-18 19:32:43 -05:00
|
|
|
import Document, { Html, Head, Main, NextScript } from 'next/document';
|
2023-12-23 14:54:38 -06:00
|
|
|
|
2024-03-18 19:32:43 -05:00
|
|
|
class MyDocument extends Document {
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Html>
|
|
|
|
<Head>
|
2024-03-19 17:47:16 -05:00
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Blinker:wght@100;200;300;400;600;700;800;900&family=Poppins&display=swap" rel="stylesheet" />
|
2024-03-18 19:32:43 -05:00
|
|
|
</Head>
|
|
|
|
<body>
|
|
|
|
<Main />
|
|
|
|
<NextScript />
|
|
|
|
</body>
|
|
|
|
</Html>
|
|
|
|
);
|
|
|
|
}
|
2023-12-23 14:54:38 -06:00
|
|
|
}
|
2024-03-18 19:32:43 -05:00
|
|
|
|
|
|
|
export default MyDocument;
|