mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-26 09:35:29 +02:00
16 lines
332 B
TypeScript
16 lines
332 B
TypeScript
import { Head, Html, Main, NextScript } from "next/document";
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html lang="en" className="font-sans">
|
|
<Head>
|
|
<link rel="icon" href="/icon.svg" />
|
|
</Head>
|
|
<body className="flex h-full w-full flex-col font-sans">
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|