- Change lang='fr' to lang='en' (open-source project default) - Change title from 'Marlbot Chat' to 'PinchChat' - Change favicon emoji from 🤖 to 🦞 (project mascot) - Add meta description, theme-color, and Open Graph tags
20 lines
948 B
HTML
20 lines
948 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="A sleek, dark-themed webchat UI for OpenClaw — monitor sessions, stream responses, and inspect tool calls in real-time." />
|
|
<meta name="theme-color" content="#1e1e24" />
|
|
<meta property="og:title" content="PinchChat" />
|
|
<meta property="og:description" content="A sleek, dark-themed webchat UI for OpenClaw" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://github.com/MarlBurroW/pinchchat" />
|
|
<title>PinchChat</title>
|
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🦞</text></svg>" />
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|