homepage/src/pages/_document.jsx

24 lines
832 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>
2022-09-26 15:03:02 +03:00
<meta
name="description"
content="A highly customizable homepage (or startpage / application dashboard) with Docker and service API integrations."
/>
2022-10-08 16:04:24 +03:00
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?v=4" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png?v=4" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png?v=4" />
<link rel="manifest" href="/site.webmanifest?v=4" />
<link rel="mask-icon" href="/safari-pinned-tab.svg?v=4" color="#1e9cd7" />
2022-09-25 19:43:27 +03:00
</Head>
<body>
2022-08-24 10:44:35 +03:00
<Main />
<NextScript />
</body>
</Html>
);
}