import { LOCALES, languageNames, type Locale, type Messages } from './i18n'; export const SETTINGS_NAV_ITEMS = [ { targetId: 'settings-general', title: '일반', detail: '표시 · 언어' }, { targetId: 'settings-models', title: '모델', detail: 'owner · reviewer · arbiter', }, { targetId: 'settings-runtime', title: '런타임', detail: 'skills · MCP · config', }, { targetId: 'settings-moa', title: 'MoA', detail: '참조 모델 · 연결 테스트' }, { targetId: 'settings-codex', title: 'Codex', detail: 'fast mode · /goal' }, { targetId: 'settings-accounts', title: '계정', detail: 'Claude · Codex' }, ] as const; export type SettingsSectionId = (typeof SETTINGS_NAV_ITEMS)[number]['targetId']; export function SettingsNav({ activeSection, onSelect, }: { activeSection: SettingsSectionId; onSelect: (section: SettingsSectionId) => void; }) { return (
{description}