generative_front/pages/_document.js
Hossein Salari d4a2acba6e
All checks were successful
Build and Deploy Next.js + Nginx Docker Image / build-and-deploy (push) Successful in 2m53s
Build and Deploy Next.js + Nginx Docker Image / deploy (push) Successful in 6s
core: update many files
2026-02-23 13:41:29 +03:30

17 lines
383 B
JavaScript

import { Html, Head, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html lang="en">
<Head>
<title>سامانه جامع تولید محتوای هوشمند</title>
<link rel="icon" href="/generative-logo.png" />
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}