mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-08 00:10:24 +08:00
18 lines
405 B
TypeScript
18 lines
405 B
TypeScript
import { Head, Html, Main, NextScript } from 'next/document'
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html className="h-full bg-gray-50 antialiased" lang="en">
|
|
<Head>
|
|
|
|
<link rel="shortcut icon" type="image/png" href="/images/logos/favicon.png" />
|
|
|
|
</Head>
|
|
<body className="flex h-full flex-col">
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|