197f40448e
- S 标从 2048 原图裁切:导航/页脚/admin 用 512 webp(96KB),favicon 32/64 圆角 png,apple-touch-icon 180 - OG 分享图用完整版 logo-full.jpg(含字标),index.html 补 og:title/description/image - 自绘 SVG logo 退役;原图 8.4MB 移入 design-assets/(已 gitignore,不进构建产物) - web/dist 总体积 1.0MB Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
38 lines
1.5 KiB
HTML
38 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/png" sizes="64x64" href="/favicon.png" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png" />
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta
|
|
name="description"
|
|
content="sundynix agentix — 事件驱动的 AI Agent 工作台。画布编排智能体,多 Agent 团队研究、检索、生成真正的 Word 报告。"
|
|
/>
|
|
<meta property="og:title" content="sundynix agentix — 事件驱动的 AI Agent 工作台" />
|
|
<meta
|
|
property="og:description"
|
|
content="画布编排智能体,多 Agent 团队研究、检索、生成真正的 Word 报告。"
|
|
/>
|
|
<meta property="og:image" content="https://sundynix.com/brand/logo-full.jpg" />
|
|
<meta property="og:type" content="website" />
|
|
<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>
|