2022-12-06 14:51:03 +01:00
|
|
|
import { Head, Html, Main, NextScript } from "next/document";
|
|
|
|
|
|
2023-05-06 16:08:21 +10:00
|
|
|
export default function Document() {
|
2022-12-06 14:51:03 +01:00
|
|
|
return (
|
2023-04-04 22:02:32 +00:00
|
|
|
<Html className="h-full scroll-smooth bg-gray-100 font-normal antialiased" lang="en">
|
2022-12-06 14:51:03 +01:00
|
|
|
<Head>
|
|
|
|
|
<meta name="color-scheme"></meta>
|
2023-05-28 13:07:47 +10:00
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
|
|
|
|
<link rel="manifest" href="/site.webmanifest" />
|
2022-12-06 14:51:03 +01:00
|
|
|
</Head>
|
|
|
|
|
<body className="flex h-full flex-col">
|
|
|
|
|
<Main />
|
|
|
|
|
<NextScript />
|
|
|
|
|
</body>
|
|
|
|
|
</Html>
|
|
|
|
|
);
|
|
|
|
|
}
|