mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-11 00:30:06 +08:00
17 lines
459 B
TypeScript
17 lines
459 B
TypeScript
import { ColorModeScript } from "@chakra-ui/react";
|
|
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>
|
|
);
|
|
}
|