36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
|
|
<!-- Standard favicon -->
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
|
|
<!-- Apple touch icon (home screen icon) -->
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
|
|
<!-- Viewport -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<!-- App name (THIS controls the iOS home screen label) -->
|
|
<meta name="apple-mobile-web-app-title" content="AllardDCS" />
|
|
|
|
<!-- Enable standalone (app-like) mode -->
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
|
|
<!-- Status bar styling (options: default, black, black-translucent) -->
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
|
|
|
<!-- Theme color (affects address bar / UI tint on some platforms) -->
|
|
<meta name="theme-color" content="#000000" />
|
|
|
|
<!-- Fallback title (used if meta tag is missing, and for browser tabs) -->
|
|
<title>Chat</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|