'use client' import { useLanguage } from '../i18n/LanguageProvider' import { translations } from '../i18n/translations' const projects = [ { name: 'XCloudFlow', desc: { en: 'Multi-cloud IaC engine built with Pulumi SDK and Go.', zh: '基于 Pulumi SDK 和 Go 构建的多云 IaC 引擎。', }, link: 'https://github.com/svc-design/XCloudFlow', }, { name: 'KubeGuard', desc: { en: 'Kubernetes cluster application and node-level backup system.', zh: 'Kubernetes 集群应用与节点级备份系统。', }, link: 'https://github.com/svc-design/KubeGuard', }, { name: 'XConfig', desc: { en: 'Lightweight task execution & configuration orchestration engine.', zh: '轻量级任务执行与配置编排引擎。', }, link: 'https://github.com/svc-design/XConfig', }, { name: 'XScopeHub', desc: { en: 'Observability suite: Vector/OTel → OpenObserve → nearline ETL → Postgres/Timescale + pgvector & Apache AGE for 10-min active call graph; includes DeepFlow, node_exporter, process-exporter, Vector agents.', zh: '观测套件:Vector/OTel → OpenObserve → 近线 ETL → Postgres/Timescale + pgvector 与 Apache AGE 实现 10 分钟活跃调用图;集成 DeepFlow、node_exporter、process-exporter、Vector 代理。', }, link: 'https://github.com/svc-design/XScopeHub', }, { name: 'Navi', desc: { en: 'Guiding your tasks, helping you get things done faster.', zh: '引导你的任务,帮助你更快完成工作。', }, link: 'https://github.com/svc-design/Navi', }, { name: 'XStream', desc: { en: 'Cross-border developer proxy accelerator for global accessibility.', zh: '跨境开发者代理加速器,全球访问更高效。', }, link: 'https://github.com/svc-design/Xstream', }, ] export default function OpenSource() { const { language } = useLanguage() const t = translations[language] return (

{t.openSourceTitle}

{projects.map((p) => (

{p.name}

{p.desc[language]}

GitHub →
))}
) }