lvwerra's picture
lvwerra HF Staff
Overview: boxless expanded markdown, accent waiting-line; keyboard-aware inputs on mobile (resizes-content + scrollIntoView)
00dfe82 verified
Raw
History Blame Contribute Delete
924 Bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- interactive-widget: the layout shrinks when the keyboard opens instead
of the keyboard covering inputs (Chrome/Android; iOS ignores it) -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, interactive-widget=resizes-content" />
<meta name="theme-color" content="#0e1217" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Agents" />
<link rel="manifest" href="/manifest.webmanifest" />
<link rel="apple-touch-icon" href="/icons/apple-touch-icon.png" />
<link rel="icon" type="image/png" href="/icons/icon-192.png" />
<title>Agent Manager</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>