homepage/src/pages/_document.jsx

21 lines
675 B
React
Raw Normal View History

2022-08-24 10:44:35 +03:00
import { Html, Head, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html>
<Head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
2022-08-25 11:14:17 +03:00
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="true" />
2022-08-24 10:44:35 +03:00
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap"
rel="stylesheet"
/>
</Head>
2022-09-09 06:45:43 +03:00
<body className="relative w-full h-full bg-theme-50 dark:bg-theme-800 transition duration-150 ease-in-out">
2022-08-24 10:44:35 +03:00
<Main />
<NextScript />
</body>
</Html>
);
}