companion/@applications/web/index.html
2026-04-08 21:10:26 -07:00

20 lines
866 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover, user-scalable=no" />
<meta name="theme-color" content="#0a0a0f" />
<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="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Companion" />
<link rel="manifest" href="/manifest.json" />
<link rel="icon" type="image/png" href="/assets/icons/icon-192.png" />
<link rel="apple-touch-icon" href="/assets/icons/apple-touch-icon.png" />
<title>Quinn Companion</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>