29 lines
1.0 KiB
TypeScript
29 lines
1.0 KiB
TypeScript
import { Html, Head, Main, NextScript } from "next/document";
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html lang="ru">
|
|
<Head>
|
|
{/* Базовые meta-теги */}
|
|
<meta name="format-detection" content="telephone=no" />
|
|
<meta name="theme-color" content="#dc2626" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
|
<meta name="apple-mobile-web-app-title" content="Protek" />
|
|
|
|
{/* Preconnect для производительности */}
|
|
<link href="https://fonts.googleapis.com" rel="preconnect" />
|
|
<link href="https://fonts.gstatic.com" rel="preconnect" crossOrigin="anonymous" />
|
|
|
|
{/* Favicon */}
|
|
<link href="/images/favicon.png" rel="shortcut icon" type="image/x-icon" />
|
|
<link href="/images/webclip.png" rel="apple-touch-icon" />
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|