mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-08 00:10:24 +08:00
072190145b
with the ability to be overridden per-page
16 lines
407 B
TypeScript
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>
|
|
);
|
|
}
|