添加解决方案页面,提取解决方案公用组件

This commit is contained in:
2025-12-16 19:27:12 +08:00
parent 1f9b6bb044
commit 69fdcabcac
58 changed files with 732 additions and 314 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1021 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

View File

@@ -0,0 +1,51 @@
import ScenePage, {ScenePageConfig} from '@/components/scene-page'
import bannerImg from './_assets/banner.webp'
import solutionImg from './_assets/solution-main.webp'
import value1Img from './_assets/value-1.webp'
import value2Img from './_assets/value-2.webp'
import value3Img from './_assets/value-3.webp'
const config: ScenePageConfig = {
breadcrumb: {
label: '网络测试',
href: '/network-testing',
},
banner: {
title: '网络测试',
description: '多地域性能测试、兼容性验证、用户体验优化,确保服务质量。助力企业全面了解产品在不同网络环境下的表现',
backgroundImage: bannerImg,
features: ['多地域性能测试', '兼容性验证', '用户体验评估'],
},
value: {
title: '全面保障服务质量',
cards: [
{
icon: value1Img,
title: '多地域性能测试',
description: '模拟不同地区用户的访问环境,测试网站或应用在各地的加载速度、响应时间和稳定性,发现性能瓶颈,优化用户体验',
},
{
icon: value2Img,
title: '网络兼容性验证',
description: '在不同网络环境(电信、联通、移动)下测试产品的兼容性和可用性,确保所有用户都能获得良好的访问体验',
},
{
icon: value3Img,
title: '真实用户模拟',
description: '通过代理IP模拟真实用户的访问行为和网络环境进行压力测试和功能验证及早发现并解决潜在问题',
},
],
},
solution: {
title: '蓝狐网络测试解决方案',
image: solutionImg,
paragraphs: [
'全面的网络测试是保障产品质量的关键。我们的代理IP服务为网络测试提供强大支持帮助企业模拟不同地区、不同网络环境的真实用户访问全面评估产品性能和用户体验。让测试更加真实、全面、高效。',
'通过遍布全国的代理节点您可以从任意地区、任意运营商网络进行测试真实还原用户的访问场景。我们的技术确保测试的准确性和稳定性帮助您及早发现问题、优化性能。无论是网站测试、应用测试还是API测试我们都能为您提供专业的代理解决方案。',
],
},
}
export default function NetworkTestingPage() {
return <ScenePage {...config}/>
}