Independent React, TypeScript and Vite web application for MaskanX. Includes the chat console, agent and persona configuration, MCP client management, model and provider settings, cron jobs, sessions, and diagnostics. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
20 lines
595 B
HTML
20 lines
595 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/png" href="/maskan-logo.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>MaskanX Console</title>
|
|
<script
|
|
defer
|
|
src="https://unpkg.com/react-grab@0.1.33/dist/index.global.js"
|
|
integrity="sha384-VdP7BGZoc/91DU2gxSRyFzN0IN9jJuTsv4o0p0LyeiRb4ZvAq03xPlqV9jNDtAzY"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|