Files
Open-Assistant/website/src/pages/_document.tsx
T
AbdBarho 072190145b Add global layout
with the ability to be overridden per-page
2022-12-28 10:03:03 +01:00

16 lines
407 B
TypeScript

import { Head, Html, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html className="h-full antialiased" lang="en">
<Head>
<link rel="shortcut icon" type="image/png" href="/images/logos/favicon.png" />
</Head>
<body className="flex h-full flex-col bg-gray-50">
<Main />
<NextScript />
</body>
</Html>
);
}