diff --git a/ui/homepage/app/panel/components/Header.tsx b/ui/homepage/app/panel/components/Header.tsx index 6346cbb..05e6d44 100644 --- a/ui/homepage/app/panel/components/Header.tsx +++ b/ui/homepage/app/panel/components/Header.tsx @@ -44,8 +44,8 @@ export default function Header({ onMenu }: HeaderProps) {
- XControl Control Center - Unified governance for admins and end users + XControl User Center + Personalized access across every service touchpoint
{statusBadge} diff --git a/ui/homepage/app/panel/components/Sidebar.tsx b/ui/homepage/app/panel/components/Sidebar.tsx index 6254a64..2dee749 100644 --- a/ui/homepage/app/panel/components/Sidebar.tsx +++ b/ui/homepage/app/panel/components/Sidebar.tsx @@ -32,58 +32,58 @@ interface NavSection { const navSections: NavSection[] = [ { - title: 'Overview', + title: '用户中心', items: [ { href: '/panel', label: 'Dashboard', - description: 'Control center snapshot', + description: '专属于你的信息总览', icon: Home, }, ], }, { - title: 'Admin Toolkit', + title: '功能特性', items: [ { href: '/panel/agent', label: 'Agents', - description: 'Manage runtime nodes', + description: '管理运行时节点', icon: Server, }, { href: '/panel/api', label: 'APIs', - description: 'Observe backend services', + description: '洞察后端服务', icon: Code, }, { href: '/panel/subscription', label: 'Subscription', - description: 'Billing & plan controls', + description: '套餐与计费控制', icon: CreditCard, }, { href: '/panel/xray', label: 'XRay', - description: 'Inspect network policies', + description: '审视网络策略', icon: Search, }, ], }, { - title: 'Identity & Access', + title: '权限设置', items: [ { href: '/panel/account', label: 'Accounts', - description: 'Directory & MFA settings', + description: '目录与多因素设置', icon: User, }, { href: '/panel/ldp', label: 'LDP', - description: 'Low-latency identity plane', + description: '低时延身份平面', icon: Shield, }, ], @@ -104,8 +104,8 @@ export default function Sidebar({ className = '', onNavigate }: SidebarProps) {