docs: MCP

This commit is contained in:
Simon
2026-03-22 03:21:33 +08:00
parent 4f71f065df
commit 3456f45590
9 changed files with 107 additions and 14 deletions

View File

@@ -8,8 +8,8 @@ export default function LanguageSwitcher() {
const dropdownRef = useRef<HTMLDivElement>(null)
const languages = [
{ code: 'zh-CN' as const, label: '中文' },
{ code: 'en-US' as const, label: 'English' },
{ code: 'zh-CN' as const, label: '中文' },
]
const currentLanguage = languages.find((lang) => lang.code === language) || languages[0]