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>
26 lines
837 B
HTML
26 lines
837 B
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/png" href="/admin/favicon.png" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="robots" content="noindex" />
|
|
<title>sundynix admin — 内容管理</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>
|