29 lines
1019 B
HTML
29 lines
1019 B
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta
|
|
name="description"
|
|
content="sundynix agentix — 事件驱动的 AI Agent 工作台。画布编排智能体,多 Agent 团队研究、检索、生成真正的 Word 报告。"
|
|
/>
|
|
<title>sundynix agentix — 事件驱动的 AI Agent 工作台</title>
|
|
<script>
|
|
// 避免主题闪烁:React 挂载前先落 dark class
|
|
;(function () {
|
|
var t = localStorage.getItem('sundynix-theme')
|
|
var dark =
|
|
t === 'dark' ||
|
|
((t === null || t === 'system') &&
|
|
window.matchMedia('(prefers-color-scheme: dark)').matches)
|
|
if (dark) document.documentElement.classList.add('dark')
|
|
})()
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|