153 lines
6.7 KiB
TypeScript
Raw Normal View History

2025-09-15 14:52:27 +08:00
import { Users, Award, Globe, Shield, Zap, Target } from 'lucide-react';
export default function About() {
return (
<section className="px-6 py-16 bg-white">
<div className="max-w-screen-xl mx-auto">
{/* 公司介绍 */}
<div className="text-center mb-16">
<h2 className="text-3xl font-bold text-primary mb-6"></h2>
<div className="max-w-4xl mx-auto space-y-6">
<p className="text-lg text-gray-600 leading-relaxed">
Pinnovate Cloud 2020
AWS
15
</p>
<p className="text-lg text-gray-600 leading-relaxed">
500+
访
</p>
</div>
</div>
{/* 核心优势 */}
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mb-16">
{[
{
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) => (
<div key={index} className="text-center group">
<div className="w-16 h-16 bg-gradient-to-br from-gray-50 to-gray-100 rounded-full flex items-center justify-center mx-auto mb-4 group-hover:scale-110 transition-transform">
<advantage.icon className={`w-8 h-8 ${advantage.color}`} />
</div>
<h3 className="text-xl font-semibold text-primary mb-3">{advantage.title}</h3>
<p className="text-gray-600 leading-relaxed">{advantage.description}</p>
</div>
))}
</div>
{/* 技术实力 */}
<div className="bg-gradient-to-r from-gray-50 to-blue-50 rounded-2xl p-8 md:p-12">
<div className="text-center mb-8">
<h3 className="text-2xl font-bold text-primary mb-4"></h3>
<p className="text-gray-600 max-w-3xl mx-auto">
</p>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
{[
{ name: 'CDN 技术', value: '99.9%', desc: '缓存命中率' },
{ name: '智能路由', value: '50ms', desc: '平均延迟' },
{ name: '安全防护', value: '100%', desc: 'DDoS 防护' },
{ name: '全球节点', value: '50+', desc: '覆盖地区' }
].map((stat, index) => (
<div key={index} className="text-center">
<div className="w-20 h-20 bg-white rounded-full flex items-center justify-center mx-auto mb-3 shadow-sm">
<span className="text-2xl font-bold text-accent">{stat.value}</span>
</div>
<h4 className="text-lg font-semibold text-primary mb-1">{stat.name}</h4>
<p className="text-sm text-gray-600">{stat.desc}</p>
</div>
))}
</div>
</div>
{/* 客户证言 */}
<div className="mt-16">
<div className="text-center mb-8">
<h3 className="text-2xl font-bold text-primary mb-4"></h3>
<p className="text-gray-600"></p>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
{[
{
quote: 'Pinnovate Cloud 的加速服务帮助我们显著提升了全球用户的访问体验转化率提升了近30%。',
author: '张总',
company: '某大型电商平台',
position: '技术总监'
},
{
quote: '通过 Pinnovate Cloud 的游戏加速服务,我们的玩家在全球范围内都能享受到流畅的游戏体验。',
author: '李经理',
company: '知名游戏公司',
position: '运营总监'
},
{
quote: 'Pinnovate Cloud 不仅提供了卓越的性能优化,更重要的是保证了我们金融系统的安全性。',
author: '王总',
company: '大型金融机构',
position: 'CTO'
}
].map((testimonial, index) => (
<div key={index} className="bg-white rounded-lg p-6 shadow-md border border-gray-100">
<div className="flex items-center mb-4">
<div className="w-12 h-12 bg-accent rounded-full flex items-center justify-center mr-4">
<span className="text-white font-semibold text-lg">
{testimonial.author.charAt(0)}
</span>
</div>
<div>
<div className="font-semibold text-primary">{testimonial.author}</div>
<div className="text-sm text-gray-600">{testimonial.position}</div>
<div className="text-sm text-gray-500">{testimonial.company}</div>
</div>
</div>
<p className="text-gray-700 italic leading-relaxed">
"{testimonial.quote}"
</p>
</div>
))}
</div>
</div>
</div>
</section>
);
}