FutureCloud/lib/content copy.ts
2025-09-15 16:58:31 +08:00

1327 lines
57 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { ReactNode } from 'react';
export interface Article {
id: number;
title: string;
summary: string;
content: string;
category: string;
author: string;
date: string;
readTime: string;
image: string;
tags: string[];
}
export interface NewsContent {
title: string;
subtitle: string;
categories: Record<string, string>;
articles: Article[];
}
export interface LanguageContent {
title: string;
description: string;
keywords: string;
nav: {
home: string;
services: string;
solutions: string;
pricing: string;
news: string;
contact: string;
};
hero: {
title: string;
subtitle: string;
description: string;
cta: string;
learn: string;
};
services: {
title: string;
subtitle: string;
items: {
title: string;
description: string;
features: string[];
}[];
};
solutions: {
title: string;
subtitle: string;
items: {
title: string;
description: string;
benefits: string[];
}[];
};
pricing: {
title: string;
subtitle: string;
plans: {
name: string;
price: string;
period: string;
description: string;
features: string[];
popular: boolean;
}[];
};
contact: {
title: string;
subtitle: string;
form: {
name: string;
email: string;
company: string;
phone: string;
message: string;
submit: string;
namePlaceholder: string;
emailPlaceholder: string;
companyPlaceholder: string;
phonePlaceholder: string;
messagePlaceholder: string;
};
info: {
address: string;
phone: string;
email: string;
hours: string;
};
};
about: {
title: string;
subtitle: string;
description: string;
mission: {
title: string;
content: string;
};
vision: {
title: string;
content: string;
};
values: {
title: string;
items: string[];
};
team: {
title: string;
members: {
name: string;
position: string;
description: string;
}[];
};
};
news: NewsContent;
footer: {
company: {
name: string;
description: string;
slogan: string;
};
quickLinks: {
title: string;
links: {
name: string;
href: string;
}[];
};
services: {
title: string;
items: string[];
};
contact: {
title: string;
address: string;
phone: string;
email: string;
hours: string;
};
social: {
title: string;
links: {
name: string;
icon: ReactNode;
href: string;
}[];
};
legal: {
links: {
name: string;
href: string;
}[];
};
certifications: {
title: string;
items: string[];
};
newsletter: {
title: string;
description: string;
placeholder: string;
button: string;
};
copyright: string;
icp: string;
sitemap: string;
};
}
export const content: Record<LanguageType, LanguageContent> = {
'zh-CN': {
title: 'AWS云服务代理 - 专业云计算解决方案',
description: '提供专业的AWS云服务代理包括云服务器、数据库、存储等全方位云计算解决方案',
keywords: 'AWS, 云服务器, 云计算, 代理商, 云存储, 数据库',
nav: {
home: '首页',
services: '服务',
solutions: '解决方案',
pricing: '价格',
news: '资讯',
contact: '联系我们',
},
hero: {
title: '未来云计算',
subtitle: '开启无限可能',
description: '专业的AWS云服务代理商为您提供安全、稳定、高效的云计算解决方案',
cta: '立即开始',
learn: '了解更多',
},
services: {
title: '核心服务',
subtitle: '全方位云计算解决方案',
items: [
{
title: 'EC2 云服务器',
description: '弹性计算云服务器,按需扩展,高性能计算',
features: ['按需付费', '自动扩展', '高性能计算', '多种实例类型'],
},
{
title: 'RDS 数据库',
description: '托管关系数据库服务,自动备份,高可用性',
features: ['自动备份', '高可用性', '读写分离', '监控告警'],
},
{
title: 'S3 云存储',
description: '安全可靠的对象存储服务,无限扩展容量',
features: ['无限容量', '99.999999999%持久性', '版本控制', '生命周期管理'],
},
{
title: 'CloudFront CDN',
description: '全球内容分发网络,加速网站访问速度',
features: ['全球节点', '低延迟', 'DDoS防护', '实时监控'],
},
{
title: 'Lambda 无服务器',
description: '事件驱动的无服务器计算服务',
features: ['按执行付费', '自动扩展', '事件驱动', '多语言支持'],
},
{
title: 'VPC 私有网络',
description: '安全隔离的虚拟私有云网络',
features: ['网络隔离', '安全组', '子网划分', 'VPN连接'],
},
],
},
solutions: {
title: '解决方案',
subtitle: '针对不同行业的专业解决方案',
items: [
{
title: '企业级应用迁移',
description: '帮助企业将传统应用平滑迁移到云端',
benefits: ['降低成本', '提高可靠性', '增强安全性', '简化运维'],
},
{
title: '大数据分析平台',
description: '构建高性能的大数据处理和分析平台',
benefits: ['实时处理', '弹性扩展', '成本优化', '数据洞察'],
},
{
title: '容器化部署',
description: '基于Kubernetes的容器化应用部署方案',
benefits: ['快速部署', '自动扩展', '资源优化', '持续集成'],
},
{
title: '灾备与恢复',
description: '完整的灾难恢复和业务连续性解决方案',
benefits: ['数据保护', '快速恢复', '异地备份', '合规要求'],
},
],
},
pricing: {
title: '价格方案',
subtitle: '灵活的价格方案,满足不同需求',
plans: [
{
name: '基础版',
price: '¥999',
period: '/月',
description: '适合小型企业和初创公司',
features: [
'2核4GB EC2实例',
'20GB SSD存储',
'100GB流量',
'基础技术支持',
'99.9%可用性保证',
],
popular: false,
},
{
name: '专业版',
price: '¥2999',
period: '/月',
description: '适合中型企业和成长型公司',
features: [
'4核8GB EC2实例',
'100GB SSD存储',
'500GB流量',
'RDS数据库',
'24/7技术支持',
'99.95%可用性保证',
],
popular: true,
},
{
name: '企业版',
price: '¥9999',
period: '/月',
description: '适合大型企业和高要求应用',
features: [
'8核16GB EC2实例',
'500GB SSD存储',
'2TB流量',
'高可用RDS集群',
'CloudFront CDN',
'专属客户经理',
'99.99%可用性保证',
],
popular: false,
},
],
},
contact: {
title: '联系我们',
subtitle: '专业团队为您提供7x24小时服务',
form: {
name: '姓名',
email: '邮箱',
company: '公司',
phone: '电话',
message: '留言',
submit: '提交',
namePlaceholder: '请输入您的姓名',
emailPlaceholder: '请输入您的邮箱',
companyPlaceholder: '请输入您的公司名称',
phonePlaceholder: '请输入您的电话号码',
messagePlaceholder: '请描述您的需求...',
},
info: {
address: '地址北京市朝阳区建国门外大街1号',
phone: '电话400-888-9999',
email: '邮箱support@cloudagency.com',
hours: '服务时间7x24小时',
},
},
about: {
title: '关于我们',
subtitle: '专业的AWS云服务代理商',
description:
'我们是一家专业的AWS云服务代理商致力于为客户提供最优质的云计算解决方案。拥有丰富的云计算经验和专业的技术团队为企业数字化转型提供全方位支持。',
mission: {
title: '我们的使命',
content:
'通过专业的云计算服务,帮助企业实现数字化转型,提高业务效率,降低运营成本。',
},
vision: {
title: '我们的愿景',
content: '成为中国领先的云计算服务提供商,为客户创造更大的商业价值。',
},
values: {
title: '我们的价值观',
items: ['专业服务', '客户至上', '持续创新', '诚信合作'],
},
team: {
title: '专业团队',
members: [
{
name: '张伟',
position: '技术总监',
description: '10年云计算经验AWS认证解决方案架构师',
},
{
name: '李娜',
position: '项目经理',
description: '8年项目管理经验PMP认证项目管理专家',
},
{
name: '王强',
position: '运维专家',
description: '12年运维经验专注于云基础设施管理',
},
],
},
},
news: {
title: '最新资讯',
subtitle: '了解云计算行业最新动态和技术趋势',
categories: {
all: '全部',
industry: '行业动态',
technology: '技术更新',
company: '公司新闻',
case: '案例分享',
},
articles: [
{
id: 1,
title: 'AWS发布新一代EC2实例性能提升40%',
summary:
'Amazon Web Services宣布推出新一代EC2实例采用最新处理器技术为企业提供更强大的计算能力。',
content:
'Amazon Web Services今日宣布推出新一代EC2实例系列这些实例采用了最新的处理器技术相比上一代产品性能提升高达40%。新实例特别针对高性能计算、机器学习和数据分析工作负载进行了优化...',
category: 'technology',
author: '技术团队',
date: '2024-01-15',
readTime: '5分钟',
image: '/api/placeholder/600/300',
tags: ['AWS', 'EC2', '性能优化'],
},
{
id: 2,
title: '企业云迁移最佳实践指南',
summary:
'本文详细介绍了企业在进行云迁移时需要注意的关键要点和最佳实践,帮助企业顺利完成数字化转型。',
content:
'随着数字化转型的深入推进,越来越多的企业选择将业务迁移到云端。然而,云迁移并非简单的技术迁移,而是一个涉及业务流程、技术架构、人员培训等多个方面的系统工程...',
category: 'industry',
author: '解决方案架构师',
date: '2024-01-12',
readTime: '8分钟',
image: '/api/placeholder/600/300',
tags: ['云迁移', '最佳实践', '数字化转型'],
},
{
id: 3,
title: '成功案例:某大型制造企业的云化之路',
summary:
'分享某大型制造企业如何通过我们的云服务解决方案实现了成本降低30%效率提升50%的显著成果。',
content:
'某大型制造企业面临着传统IT基础设施老化、运维成本高昂、业务扩展受限等挑战。通过与我们的合作该企业成功实现了全面的云化转型...',
category: 'case',
author: '项目经理',
date: '2024-01-10',
readTime: '6分钟',
image: '/api/placeholder/600/300',
tags: ['成功案例', '制造业', '云化转型'],
},
{
id: 4,
title: '公司荣获"年度最佳云服务提供商"奖项',
summary:
'我们很荣幸地宣布公司在2024年度云计算行业评选中荣获"年度最佳云服务提供商"奖项。',
content:
'在刚刚结束的2024年度云计算行业评选中我们公司凭借优质的服务质量、创新的解决方案和卓越的客户满意度荣获了"年度最佳云服务提供商"这一重要奖项...',
category: 'company',
author: '市场部',
date: '2024-01-08',
readTime: '3分钟',
image: '/api/placeholder/600/300',
tags: ['公司荣誉', '奖项', '行业认可'],
},
{
id: 5,
title: '容器化技术在云原生应用中的实践',
summary:
'深入探讨容器化技术如何助力企业构建云原生应用,提高应用的可移植性和可扩展性。',
content:
'容器化技术作为云原生应用的核心技术之一,正在改变着应用的开发、部署和运维方式。本文将深入探讨容器化技术的优势以及在实际项目中的应用实践...',
category: 'technology',
author: '技术专家',
date: '2024-01-05',
readTime: '7分钟',
image: '/api/placeholder/600/300',
tags: ['容器化', '云原生', 'Kubernetes'],
},
{
id: 6,
title: '2024年云计算市场趋势预测',
summary:
'分析2024年云计算市场的发展趋势包括多云策略、边缘计算、AI集成等关键领域的发展方向。',
content:
'随着2024年的到来云计算市场继续保持强劲的增长势头。本文将从多个维度分析今年云计算市场的主要趋势为企业的技术决策提供参考...',
category: 'industry',
author: '行业分析师',
date: '2024-01-03',
readTime: '10分钟',
image: '/api/placeholder/600/300',
tags: ['市场趋势', '云计算', '2024预测'],
},
],
},
footer: {
company: {
name: '云服务代理',
description: '专业的AWS云服务代理商致力于为企业提供最优质的云计算解决方案。',
slogan: '让云计算更简单,让业务更高效',
},
quickLinks: {
title: '快速链接',
links: [
{ name: '关于我们', href: '/about' },
{ name: '服务项目', href: '/services' },
{ name: '解决方案', href: '/solutions' },
{ name: '价格方案', href: '/pricing' },
{ name: '最新资讯', href: '/news' },
{ name: '联系我们', href: '/contact' },
],
},
services: {
title: '核心服务',
items: [
'EC2 云服务器',
'RDS 数据库服务',
'S3 云存储',
'CloudFront CDN',
'Lambda 无服务器',
'VPC 私有网络',
],
},
contact: {
title: '联系信息',
address: '北京市朝阳区建国门外大街1号',
phone: '400-888-9999',
email: 'support@cloudagency.com',
hours: '7x24小时服务',
},
social: {
title: '关注我们',
links: [
{ name: '微信', icon: '💬', href: '#' },
{ name: '微博', icon: '📱', href: '#' },
{ name: 'LinkedIn', icon: '💼', href: '#' },
{ name: 'GitHub', icon: '🐙', href: '#' },
],
},
legal: {
links: [
{ name: '隐私政策', href: '/privacy' },
{ name: '服务条款', href: '/terms' },
{ name: 'Cookie政策', href: '/cookies' },
{ name: '法律声明', href: '/legal' },
],
},
certifications: {
title: '资质认证',
items: ['AWS官方合作伙伴', 'ISO 27001认证', '等保三级认证', 'SOC 2 Type II'],
},
newsletter: {
title: '订阅资讯',
description: '订阅我们的邮件列表,获取最新的云计算资讯和技术更新',
placeholder: '请输入您的邮箱地址',
button: '订阅',
},
copyright: '© 2024 云服务代理. 保留所有权利.',
icp: '京ICP备12345678号-1',
sitemap: '站点地图',
},
},
'zh-TW': {
title: 'AWS雲服務代理 - 專業雲計算解決方案',
description: '提供專業的AWS雲服務代理包括雲服務器、數據庫、存儲等全方位雲計算解決方案',
keywords: 'AWS, 雲服務器, 雲計算, 代理商, 雲存儲, 數據庫',
nav: {
home: '首頁',
services: '服務',
solutions: '解決方案',
pricing: '價格',
news: '資訊',
contact: '聯繫我們',
},
hero: {
title: '未來雲計算',
subtitle: '開啟無限可能',
description: '專業的AWS雲服務代理商為您提供安全、穩定、高效的雲計算解決方案',
cta: '立即開始',
learn: '了解更多',
},
services: {
title: '核心服務',
subtitle: '全方位雲計算解決方案',
items: [
{
title: 'EC2 雲服務器',
description: '彈性計算雲服務器,按需擴展,高性能計算',
features: ['按需付費', '自動擴展', '高性能計算', '多種實例類型'],
},
{
title: 'RDS 數據庫',
description: '託管關係數據庫服務,自動備份,高可用性',
features: ['自動備份', '高可用性', '讀寫分離', '監控告警'],
},
{
title: 'S3 雲存儲',
description: '安全可靠的對象存儲服務,無限擴展容量',
features: ['無限容量', '99.999999999%持久性', '版本控制', '生命週期管理'],
},
{
title: 'CloudFront CDN',
description: '全球內容分發網絡,加速網站訪問速度',
features: ['全球節點', '低延遲', 'DDoS防護', '實時監控'],
},
{
title: 'Lambda 無服務器',
description: '事件驅動的無服務器計算服務',
features: ['按執行付費', '自動擴展', '事件驅動', '多語言支持'],
},
{
title: 'VPC 私有網絡',
description: '安全隔離的虛擬私有雲網絡',
features: ['網絡隔離', '安全組', '子網劃分', 'VPN連接'],
},
],
},
solutions: {
title: '解決方案',
subtitle: '針對不同行業的專業解決方案',
items: [
{
title: '企業級應用遷移',
description: '幫助企業將傳統應用平滑遷移到雲端',
benefits: ['降低成本', '提高可靠性', '增強安全性', '簡化運維'],
},
{
title: '大數據分析平台',
description: '構建高性能的大數據處理和分析平台',
benefits: ['實時處理', '彈性擴展', '成本優化', '數據洞察'],
},
{
title: '容器化部署',
description: '基於Kubernetes的容器化應用部署方案',
benefits: ['快速部署', '自動擴展', '資源優化', '持續集成'],
},
{
title: '災備與恢復',
description: '完整的災難恢復和業務連續性解決方案',
benefits: ['數據保護', '快速恢復', '異地備份', '合規要求'],
},
],
},
pricing: {
title: '價格方案',
subtitle: '靈活的價格方案,滿足不同需求',
plans: [
{
name: '基礎版',
price: 'NT$4,999',
period: '/月',
description: '適合小型企業和初創公司',
features: [
'2核4GB EC2實例',
'20GB SSD存儲',
'100GB流量',
'基礎技術支持',
'99.9%可用性保證',
],
popular: false,
},
{
name: '專業版',
price: 'NT$14,999',
period: '/月',
description: '適合中型企業和成長型公司',
features: [
'4核8GB EC2實例',
'100GB SSD存儲',
'500GB流量',
'RDS數據庫',
'24/7技術支持',
'99.95%可用性保證',
],
popular: true,
},
{
name: '企業版',
price: 'NT$49,999',
period: '/月',
description: '適合大型企業和高要求應用',
features: [
'8核16GB EC2實例',
'500GB SSD存儲',
'2TB流量',
'高可用RDS集群',
'CloudFront CDN',
'專屬客戶經理',
'99.99%可用性保證',
],
popular: false,
},
],
},
contact: {
title: '聯繫我們',
subtitle: '專業團隊為您提供7x24小時服務',
form: {
name: '姓名',
email: '郵箱',
company: '公司',
phone: '電話',
message: '留言',
submit: '提交',
namePlaceholder: '請輸入您的姓名',
emailPlaceholder: '請輸入您的郵箱',
companyPlaceholder: '請輸入您的公司名稱',
phonePlaceholder: '請輸入您的電話號碼',
messagePlaceholder: '請描述您的需求...',
},
info: {
address: '地址台北市信義區信義路五段7號',
phone: '電話02-8101-8888',
email: '郵箱support@cloudagency.com',
hours: '服務時間7x24小時',
},
},
about: {
title: '關於我們',
subtitle: '專業的AWS雲服務代理商',
description:
'我們是一家專業的AWS雲服務代理商致力於為客戶提供最優質的雲計算解決方案。擁有豐富的雲計算經驗和專業的技術團隊為企業數字化轉型提供全方位支持。',
mission: {
title: '我們的使命',
content:
'通過專業的雲計算服務,幫助企業實現數字化轉型,提高業務效率,降低運營成本。',
},
vision: {
title: '我們的願景',
content: '成為台灣領先的雲計算服務提供商,為客戶創造更大的商業價值。',
},
values: {
title: '我們的價值觀',
items: ['專業服務', '客戶至上', '持續創新', '誠信合作'],
},
team: {
title: '專業團隊',
members: [
{
name: '張偉',
position: '技術總監',
description: '10年雲計算經驗AWS認證解決方案架構師',
},
{
name: '李娜',
position: '項目經理',
description: '8年項目管理經驗PMP認證項目管理專家',
},
{
name: '王強',
position: '運維專家',
description: '12年運維經驗專注於雲基礎設施管理',
},
],
},
},
news: {
title: '最新資訊',
subtitle: '了解雲計算行業最新動態和技術趨勢',
categories: {
all: '全部',
industry: '行業動態',
technology: '技術更新',
company: '公司新聞',
case: '案例分享',
},
articles: [
{
id: 1,
title: 'AWS發布新一代EC2實例性能提升40%',
summary:
'Amazon Web Services宣布推出新一代EC2實例採用最新處理器技術為企業提供更強大的計算能力。',
content:
'Amazon Web Services今日宣布推出新一代EC2實例系列這些實例採用了最新的處理器技術相比上一代產品性能提升高達40%。新實例特別針對高性能計算、機器學習和數據分析工作負載進行了優化...',
category: 'technology',
author: '技術團隊',
date: '2024-01-15',
readTime: '5分鐘',
image: '/api/placeholder/600/300',
tags: ['AWS', 'EC2', '性能優化'],
},
{
id: 2,
title: '企業雲遷移最佳實踐指南',
summary:
'本文詳細介紹了企業在進行雲遷移時需要注意的關鍵要點和最佳實踐,幫助企業順利完成數字化轉型。',
content:
'隨著數字化轉型的深入推進,越來越多的企業選擇將業務遷移到雲端。然而,雲遷移並非簡單的技術遷移,而是一個涉及業務流程、技術架構、人員培訓等多個方面的系統工程...',
category: 'industry',
author: '解決方案架構師',
date: '2024-01-12',
readTime: '8分鐘',
image: '/api/placeholder/600/300',
tags: ['雲遷移', '最佳實踐', '數字化轉型'],
},
{
id: 3,
title: '成功案例:某大型製造企業的雲化之路',
summary:
'分享某大型製造企業如何通過我們的雲服務解決方案實現了成本降低30%效率提升50%的顯著成果。',
content:
'某大型製造企業面臨著傳統IT基礎設施老化、運維成本高昂、業務擴展受限等挑戰。通過與我們的合作該企業成功實現了全面的雲化轉型...',
category: 'case',
author: '項目經理',
date: '2024-01-10',
readTime: '6分鐘',
image: '/api/placeholder/600/300',
tags: ['成功案例', '製造業', '雲化轉型'],
},
{
id: 4,
title: '公司榮獲"年度最佳雲服務提供商"獎項',
summary:
'我們很榮幸地宣布公司在2024年度雲計算行業評選中榮獲"年度最佳雲服務提供商"獎項。',
content:
'在剛剛結束的2024年度雲計算行業評選中我們公司憑藉優質的服務質量、創新的解決方案和卓越的客户滿意度榮獲了"年度最佳雲服務提供商"這一重要獎項...',
category: 'company',
author: '市場部',
date: '2024-01-08',
readTime: '3分鐘',
image: '/api/placeholder/600/300',
tags: ['公司榮譽', '獎項', '行業認可'],
},
{
id: 5,
title: '容器化技術在雲原生應用中的實踐',
summary:
'深入探討容器化技術如何助力企業構建雲原生應用,提高應用的可移植性和可擴展性。',
content:
'容器化技術作為雲原生應用的核心技術之一,正在改變著應用的開發、部署和運維方式。本文將深入探討容器化技術的優勢以及在實際項目中的應用實踐...',
category: 'technology',
author: '技術專家',
date: '2024-01-05',
readTime: '7分鐘',
image: '/api/placeholder/600/300',
tags: ['容器化', '雲原生', 'Kubernetes'],
},
{
id: 6,
title: '2024年雲計算市場趨勢預測',
summary:
'分析2024年雲計算市場的發展趨勢包括多雲策略、邊緣計算、AI集成等關鍵領域的發展方向。',
content:
'隨著2024年的到來雲計算市場繼續保持強勁的增長勢頭。本文將從多個維度分析今年雲計算市場的主要趨勢為企業的技術決策提供參考...',
category: 'industry',
author: '行業分析師',
date: '2024-01-03',
readTime: '10分鐘',
image: '/api/placeholder/600/300',
tags: ['市場趨勢', '雲計算', '2024預測'],
},
],
},
footer: {
company: {
name: '雲服務代理',
description: '專業的AWS雲服務代理商致力於為企業提供最優質的雲計算解決方案。',
slogan: '讓雲計算更簡單,讓業務更高效',
},
quickLinks: {
title: '快速連結',
links: [
{ name: '關於我們', href: '/about' },
{ name: '服務項目', href: '/services' },
{ name: '解決方案', href: '/solutions' },
{ name: '價格方案', href: '/pricing' },
{ name: '最新資訊', href: '/news' },
{ name: '聯繫我們', href: '/contact' },
],
},
services: {
title: '核心服務',
items: [
'EC2 雲服務器',
'RDS 數據庫服務',
'S3 雲存儲',
'CloudFront CDN',
'Lambda 無服務器',
'VPC 私有網絡',
],
},
contact: {
title: '聯繫信息',
address: '台北市信義區信義路五段7號',
phone: '02-8101-8888',
email: 'support@cloudagency.com',
hours: '7x24小時服務',
},
social: {
title: '關注我們',
links: [
{ name: '微信', icon: '💬', href: '#' },
{ name: '微博', icon: '📱', href: '#' },
{ name: 'LinkedIn', icon: '💼', href: '#' },
{ name: 'GitHub', icon: '🐙', href: '#' },
],
},
legal: {
links: [
{ name: '隱私政策', href: '/privacy' },
{ name: '服務條款', href: '/terms' },
{ name: 'Cookie政策', href: '/cookies' },
{ name: '法律聲明', href: '/legal' },
],
},
certifications: {
title: '資質認證',
items: ['AWS官方合作夥伴', 'ISO 27001認證', '等保三級認證', 'SOC 2 Type II'],
},
newsletter: {
title: '訂閱資訊',
description: '訂閱我們的郵件列表,獲取最新的雲計算資訊和技術更新',
placeholder: '請輸入您的郵箱地址',
button: '訂閱',
},
copyright: '© 2024 雲服務代理. 保留所有權利.',
icp: '台網證字第12345號',
sitemap: '站點地圖',
},
},
en: {
title: 'AWS Cloud Service Agency - Professional Cloud Computing Solutions',
description:
'Professional AWS cloud service agency providing comprehensive cloud computing solutions including cloud servers, databases, storage and more',
keywords: 'AWS, cloud server, cloud computing, agency, cloud storage, database',
nav: {
home: 'Home',
services: 'Services',
solutions: 'Solutions',
pricing: 'Pricing',
news: 'News',
contact: 'Contact',
},
hero: {
title: 'Future Cloud Computing',
subtitle: 'Unlock Infinite Possibilities',
description:
'Professional AWS cloud service agency providing secure, stable, and efficient cloud computing solutions',
cta: 'Get Started',
learn: 'Learn More',
},
services: {
title: 'Core Services',
subtitle: 'Comprehensive Cloud Computing Solutions',
items: [
{
title: 'EC2 Cloud Servers',
description:
'Elastic compute cloud servers with on-demand scaling and high performance',
features: [
'Pay-as-you-go',
'Auto Scaling',
'High Performance',
'Multiple Instance Types',
],
},
{
title: 'RDS Database',
description:
'Managed relational database service with automatic backup and high availability',
features: [
'Automatic Backup',
'High Availability',
'Read Replicas',
'Monitoring & Alerts',
],
},
{
title: 'S3 Cloud Storage',
description:
'Secure and reliable object storage service with unlimited scalability',
features: [
'Unlimited Capacity',
'99.999999999% Durability',
'Versioning',
'Lifecycle Management',
],
},
{
title: 'CloudFront CDN',
description:
'Global content delivery network to accelerate website access speed',
features: [
'Global Edge Locations',
'Low Latency',
'DDoS Protection',
'Real-time Monitoring',
],
},
{
title: 'Lambda Serverless',
description: 'Event-driven serverless computing service',
features: [
'Pay per Execution',
'Auto Scaling',
'Event-driven',
'Multi-language Support',
],
},
{
title: 'VPC Private Network',
description: 'Secure isolated virtual private cloud network',
features: [
'Network Isolation',
'Security Groups',
'Subnet Division',
'VPN Connection',
],
},
],
},
solutions: {
title: 'Solutions',
subtitle: 'Professional solutions for different industries',
items: [
{
title: 'Enterprise Application Migration',
description:
'Help enterprises smoothly migrate traditional applications to the cloud',
benefits: [
'Cost Reduction',
'Improved Reliability',
'Enhanced Security',
'Simplified Operations',
],
},
{
title: 'Big Data Analytics Platform',
description:
'Build high-performance big data processing and analytics platforms',
benefits: [
'Real-time Processing',
'Elastic Scaling',
'Cost Optimization',
'Data Insights',
],
},
{
title: 'Containerized Deployment',
description: 'Kubernetes-based containerized application deployment solutions',
benefits: [
'Rapid Deployment',
'Auto Scaling',
'Resource Optimization',
'Continuous Integration',
],
},
{
title: 'Disaster Recovery',
description: 'Complete disaster recovery and business continuity solutions',
benefits: [
'Data Protection',
'Fast Recovery',
'Remote Backup',
'Compliance Requirements',
],
},
],
},
pricing: {
title: 'Pricing Plans',
subtitle: 'Flexible pricing plans to meet different needs',
plans: [
{
name: 'Basic',
price: '$149',
period: '/month',
description: 'Perfect for small businesses and startups',
features: [
'2-core 4GB EC2 instance',
'20GB SSD storage',
'100GB bandwidth',
'Basic technical support',
'99.9% uptime guarantee',
],
popular: false,
},
{
name: 'Professional',
price: '$449',
period: '/month',
description: 'Ideal for medium enterprises and growing companies',
features: [
'4-core 8GB EC2 instance',
'100GB SSD storage',
'500GB bandwidth',
'RDS database',
'24/7 technical support',
'99.95% uptime guarantee',
],
popular: true,
},
{
name: 'Enterprise',
price: '$1499',
period: '/month',
description: 'Perfect for large enterprises and high-demand applications',
features: [
'8-core 16GB EC2 instance',
'500GB SSD storage',
'2TB bandwidth',
'High-availability RDS cluster',
'CloudFront CDN',
'Dedicated account manager',
'99.99% uptime guarantee',
],
popular: false,
},
],
},
contact: {
title: 'Contact Us',
subtitle: 'Professional team providing 7x24 hour service',
form: {
name: 'Name',
email: 'Email',
company: 'Company',
phone: 'Phone',
message: 'Message',
submit: 'Submit',
namePlaceholder: 'Enter your name',
emailPlaceholder: 'Enter your email',
companyPlaceholder: 'Enter your company name',
phonePlaceholder: 'Enter your phone number',
messagePlaceholder: 'Describe your requirements...',
},
info: {
address: 'Address: 1 Jianguomenwai Avenue, Chaoyang District, Beijing',
phone: 'Phone: +86-400-888-9999',
email: 'Email: support@cloudagency.com',
hours: 'Service Hours: 7x24 hours',
},
},
about: {
title: 'About Us',
subtitle: 'Professional AWS Cloud Service Agency',
description:
'We are a professional AWS cloud service agency dedicated to providing the highest quality cloud computing solutions for our clients. With rich cloud computing experience and a professional technical team, we provide comprehensive support for enterprise digital transformation.',
mission: {
title: 'Our Mission',
content:
'Through professional cloud computing services, help enterprises achieve digital transformation, improve business efficiency, and reduce operational costs.',
},
vision: {
title: 'Our Vision',
content:
'To become a leading cloud computing service provider in China, creating greater business value for customers.',
},
values: {
title: 'Our Values',
items: [
'Professional Service',
'Customer First',
'Continuous Innovation',
'Honest Cooperation',
],
},
team: {
title: 'Professional Team',
members: [
{
name: 'Zhang Wei',
position: 'Technical Director',
description:
'10 years of cloud computing experience, AWS Certified Solutions Architect',
},
{
name: 'Li Na',
position: 'Project Manager',
description:
'8 years of project management experience, PMP certified project management expert',
},
{
name: 'Wang Qiang',
position: 'Operations Expert',
description:
'12 years of operations experience, specializing in cloud infrastructure management',
},
],
},
},
news: {
title: 'Latest News',
subtitle: 'Stay updated with the latest trends and developments in cloud computing',
categories: {
all: 'All',
industry: 'Industry',
technology: 'Technology',
company: 'Company',
case: 'Case Studies',
},
articles: [
{
id: 1,
title: 'AWS Launches New Generation EC2 Instances with 40% Performance Boost',
summary:
'Amazon Web Services announces the launch of new generation EC2 instances featuring the latest processor technology, providing enterprises with more powerful computing capabilities.',
content:
'Amazon Web Services today announced the launch of a new generation of EC2 instance series, which adopt the latest processor technology and deliver up to 40% performance improvement compared to the previous generation. The new instances are specifically optimized for high-performance computing, machine learning, and data analytics workloads...',
category: 'technology',
author: 'Technical Team',
date: '2024-01-15',
readTime: '5 min read',
image: '/api/placeholder/600/300',
tags: ['AWS', 'EC2', 'Performance'],
},
{
id: 2,
title: 'Enterprise Cloud Migration Best Practices Guide',
summary:
'This article provides detailed insights into key considerations and best practices for enterprise cloud migration, helping businesses successfully complete their digital transformation.',
content:
'As digital transformation continues to advance, more and more enterprises are choosing to migrate their business to the cloud. However, cloud migration is not simply a technical migration, but a systematic project involving business processes, technical architecture, personnel training and other aspects...',
category: 'industry',
author: 'Solutions Architect',
date: '2024-01-12',
readTime: '8 min read',
image: '/api/placeholder/600/300',
tags: ['Cloud Migration', 'Best Practices', 'Digital Transformation'],
},
{
id: 3,
title: "Success Story: A Large Manufacturing Enterprise's Cloud Journey",
summary:
'Sharing how a large manufacturing enterprise achieved significant results of 30% cost reduction and 50% efficiency improvement through our cloud service solutions.',
content:
'A large manufacturing enterprise faced challenges such as aging traditional IT infrastructure, high operational costs, and limited business expansion. Through cooperation with us, the enterprise successfully achieved comprehensive cloud transformation...',
category: 'case',
author: 'Project Manager',
date: '2024-01-10',
readTime: '6 min read',
image: '/api/placeholder/600/300',
tags: ['Success Story', 'Manufacturing', 'Cloud Transformation'],
},
{
id: 4,
title: 'Company Wins "Best Cloud Service Provider of the Year" Award',
summary:
'We are honored to announce that our company has won the "Best Cloud Service Provider of the Year" award in the 2024 cloud computing industry selection.',
content:
'In the recently concluded 2024 cloud computing industry selection, our company won the important award of "Best Cloud Service Provider of the Year" with high-quality service, innovative solutions and excellent customer satisfaction...',
category: 'company',
author: 'Marketing Team',
date: '2024-01-08',
readTime: '3 min read',
image: '/api/placeholder/600/300',
tags: ['Company Honor', 'Award', 'Industry Recognition'],
},
{
id: 5,
title: 'Containerization Technology Practice in Cloud-Native Applications',
summary:
'In-depth exploration of how containerization technology helps enterprises build cloud-native applications and improve application portability and scalability.',
content:
'As one of the core technologies of cloud-native applications, containerization technology is changing the way applications are developed, deployed and operated. This article will explore the advantages of containerization technology and its practical applications in real projects...',
category: 'technology',
author: 'Technical Expert',
date: '2024-01-05',
readTime: '7 min read',
image: '/api/placeholder/600/300',
tags: ['Containerization', 'Cloud Native', 'Kubernetes'],
},
{
id: 6,
title: '2024 Cloud Computing Market Trend Predictions',
summary:
'Analyzing the development trends of the cloud computing market in 2024, including key areas such as multi-cloud strategies, edge computing, and AI integration.',
content:
"With the arrival of 2024, the cloud computing market continues to maintain strong growth momentum. This article will analyze the main trends in this year's cloud computing market from multiple dimensions, providing reference for enterprise technology decisions...",
category: 'industry',
author: 'Industry Analyst',
date: '2024-01-03',
readTime: '10 min read',
image: '/api/placeholder/600/300',
tags: ['Market Trends', 'Cloud Computing', '2024 Predictions'],
},
],
},
footer: {
company: {
name: 'Cloud Service Agency',
description:
'Professional AWS cloud service agency dedicated to providing the highest quality cloud computing solutions for enterprises.',
slogan: 'Making cloud computing simpler, making business more efficient',
},
quickLinks: {
title: 'Quick Links',
links: [
{ name: 'About Us', href: '/about' },
{ name: 'Services', href: '/services' },
{ name: 'Solutions', href: '/solutions' },
{ name: 'Pricing', href: '/pricing' },
{ name: 'News', href: '/news' },
{ name: 'Contact', href: '/contact' },
],
},
services: {
title: 'Core Services',
items: [
'EC2 Cloud Servers',
'RDS Database Service',
'S3 Cloud Storage',
'CloudFront CDN',
'Lambda Serverless',
'VPC Private Network',
],
},
contact: {
title: 'Contact Info',
address: '1 Jianguomenwai Avenue, Chaoyang District, Beijing',
phone: '+86-400-888-9999',
email: 'support@cloudagency.com',
hours: '7x24 Hour Service',
},
social: {
title: 'Follow Us',
links: [
{ name: 'WeChat', icon: '💬', href: '#' },
{ name: 'Weibo', icon: '📱', href: '#' },
{ name: 'LinkedIn', icon: '💼', href: '#' },
{ name: 'GitHub', icon: '🐙', href: '#' },
],
},
legal: {
links: [
{ name: 'Privacy Policy', href: '/privacy' },
{ name: 'Terms of Service', href: '/terms' },
{ name: 'Cookie Policy', href: '/cookies' },
{ name: 'Legal Notice', href: '/legal' },
],
},
certifications: {
title: 'Certifications',
items: [
'AWS Official Partner',
'ISO 27001 Certified',
'Level 3 Security Certification',
'SOC 2 Type II',
],
},
newsletter: {
title: 'Newsletter',
description:
'Subscribe to our mailing list for the latest cloud computing news and technical updates',
placeholder: 'Enter your email address',
button: 'Subscribe',
},
copyright: '© 2024 Cloud Service Agency. All rights reserved.',
icp: 'ICP License No. 12345678-1',
sitemap: 'Sitemap',
},
},
};
export type LanguageType = 'zh-CN' | 'zh-TW' | 'en';
export type ContentType = (typeof content)[LanguageType];