feat(mindspace): 0630004 空间 UI、聊天连接、微信分享与 Agent 能力

含 MindSpace 三列布局与统计修复、聊天加载态与连接降级、平台页脚标记与 og:site_name 微信卡片、勾选资料删除 Agent 接口及内部话术过滤。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
john
2026-06-30 09:30:51 +08:00
parent b1b8d3afc6
commit 722b18326f
53 changed files with 2450 additions and 313 deletions
+7
View File
@@ -0,0 +1,7 @@
export function ChatLoadingSpinner({ className = '' }: { className?: string }) {
return (
<span className={`chat-loading-spinner${className ? ` ${className}` : ''}`} aria-hidden="true">
<span />
</span>
);
}