Files
clawdbot/apps/macos/Sources/Clawdis/Resources/WebChat/index.html
2025-12-07 17:44:37 +01:00

18 lines
555 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Security-Policy" content="default-src 'self' 'unsafe-inline' data: blob:;">
<title>Clawd Web Chat</title>
<link rel="stylesheet" href="app.css">
<style>
html, body { height: 100%; margin: 0; padding: 0; }
#app { height: 100%; }
</style>
</head>
<body>
<div id="app" style="padding:16px;font:14px -apple-system, BlinkMacSystemFont, sans-serif;color:#222">Booting web chat…</div>
<script type="module" src="webchat.bundle.js"></script>
</body>
</html>