import { Users, Award, Globe, Shield, Zap, Target } from 'lucide-react'; export default function About() { return (
{/* 公司介绍 */}

我们的故事

Pinnovate Cloud 成立于 2020 年,是一家专注于云网络加速技术的创新公司。 我们的核心团队来自 AWS、阿里云、腾讯云等全球领先的云计算厂商, 拥有超过 15 年的网络优化和运维经验。

自成立以来,我们已为全球 500+ 家企业提供定制化加速解决方案, 覆盖电商、游戏、金融、教育、医疗等多个行业, 帮助客户显著提升网站访问速度和业务稳定性。

{/* 核心优势 */}
{[ { icon: Globe, title: '全球覆盖', description: '50+ 全球节点,覆盖主要国家和地区', color: 'text-blue-500' }, { icon: Zap, title: '极速性能', description: '平均延迟 < 50ms,性能提升 50%+', color: 'text-yellow-500' }, { icon: Shield, title: '安全可靠', description: '企业级安全防护,99.9% 可用性保障', color: 'text-green-500' }, { icon: Users, title: '专业团队', description: '来自一线云厂商的技术专家团队', color: 'text-purple-500' }, { icon: Award, title: '行业认可', description: '获得多项技术专利和行业认证', color: 'text-red-500' }, { icon: Target, title: '客户成功', description: '99.9% 客户满意度,持续优化服务', color: 'text-indigo-500' } ].map((advantage, index) => (

{advantage.title}

{advantage.description}

))}
{/* 技术实力 */}

技术实力

我们拥有业界领先的技术栈和丰富的实践经验, 为客户提供最优质的云加速服务。

{[ { name: 'CDN 技术', value: '99.9%', desc: '缓存命中率' }, { name: '智能路由', value: '50ms', desc: '平均延迟' }, { name: '安全防护', value: '100%', desc: 'DDoS 防护' }, { name: '全球节点', value: '50+', desc: '覆盖地区' } ].map((stat, index) => (
{stat.value}

{stat.name}

{stat.desc}

))}
{/* 客户证言 */}

客户评价

听听我们的客户怎么说

{[ { quote: 'Pinnovate Cloud 的加速服务帮助我们显著提升了全球用户的访问体验,转化率提升了近30%。', author: '张总', company: '某大型电商平台', position: '技术总监' }, { quote: '通过 Pinnovate Cloud 的游戏加速服务,我们的玩家在全球范围内都能享受到流畅的游戏体验。', author: '李经理', company: '知名游戏公司', position: '运营总监' }, { quote: 'Pinnovate Cloud 不仅提供了卓越的性能优化,更重要的是保证了我们金融系统的安全性。', author: '王总', company: '大型金融机构', position: 'CTO' } ].map((testimonial, index) => (
{testimonial.author.charAt(0)}
{testimonial.author}
{testimonial.position}
{testimonial.company}

"{testimonial.quote}"

))}
); }