29 lines
1.5 KiB
TypeScript
29 lines
1.5 KiB
TypeScript
export default function About() {
|
||
return (
|
||
<section className="px-6 py-section bg-background">
|
||
<div className="max-w-screen-md mx-auto space-y-section">
|
||
<h2 className="text-3xl font-semibold text-center">关于我们</h2>
|
||
<p className="text-base leading-relaxed">
|
||
CloudProxy 致力于为全球用户提供高性能、可靠、安全的云加速服务。我们的核心团队来自 AWS、阿里云等一线云计算厂商,拥有多年的网络优化和运维经验。
|
||
</p>
|
||
<p className="text-base leading-relaxed">
|
||
自成立以来,我们已为数百家企业提供定制化加速解决方案,覆盖电商、游戏、金融、教育等多个行业,帮助客户显著提升网站访问速度和稳定性。
|
||
</p>
|
||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8 text-center">
|
||
<div>
|
||
<h3 className="text-2xl font-medium">使命</h3>
|
||
<p className="mt-2 text-sm text-gray-600">让全球互联网无障碍连接,推动业务高速增长。</p>
|
||
</div>
|
||
<div>
|
||
<h3 className="text-2xl font-medium">愿景</h3>
|
||
<p className="mt-2 text-sm text-gray-600">成为全球领先的云网络加速平台。</p>
|
||
</div>
|
||
<div>
|
||
<h3 className="text-2xl font-medium">价值观</h3>
|
||
<p className="mt-2 text-sm text-gray-600">客户为先,技术驱动,持续创新。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
);
|
||
} |