22 lines
881 B
HTML
22 lines
881 B
HTML
<!doctype html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#4361ee" />
|
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
<!-- iOS ignores the manifest's own icons/display mode for "Add to Home
|
|
Screen" — these three are the standalone-mode signal Safari
|
|
actually reads. -->
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
|
<title>Aura CRM — панель управления</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|