mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +01:00
25 lines
704 B
JavaScript
25 lines
704 B
JavaScript
![]() |
import { Html, Head, Main, NextScript } from "next/document";
|
||
|
|
||
|
export default function Document() {
|
||
|
return (
|
||
|
<Html>
|
||
|
<Head>
|
||
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||
|
<link
|
||
|
rel="preconnect"
|
||
|
href="https://fonts.gstatic.com"
|
||
|
crossOrigin="true"
|
||
|
/>
|
||
|
<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>
|
||
|
<body className="w-full h-full bg-theme-50 dark:bg-theme-800 transition duration-150 ease-in-out">
|
||
|
<Main />
|
||
|
<NextScript />
|
||
|
</body>
|
||
|
</Html>
|
||
|
);
|
||
|
}
|