homepage/src/pages/_document.jsx

16 lines
479 B
React
Raw Normal View History

2022-09-24 14:53:46 +03:00
import { Html, Head, Main, NextScript } from "next/document";
2022-08-24 10:44:35 +03:00
export default function Document() {
return (
<Html>
2022-09-25 19:43:27 +03:00
<Head>
<meta description="A highly customizable homepage (or startpage / application dashboard) with Docker and service API integrations." />
</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>
);
}