manual save(2025-12-29 00:16)

This commit is contained in:
SiteAgent Bot
2025-12-29 00:16:45 +08:00
parent b776315e27
commit e604e821e4
23 changed files with 3933 additions and 137 deletions

177
src/lib/constants.ts Normal file
View File

@@ -0,0 +1,177 @@
/**
* 诚裕集团企业官网 - 常量定义
*/
// 企业基本信息
export const COMPANY_INFO = {
name: '诚裕集团',
nameEn: 'Chengyu Group',
slogan: '诚信为本,裕及四方',
description: '诚裕集团成立于2010年是一家集科技研发、金融服务、产业投资于一体的综合性企业集团。秉承"诚信、创新、共赢"的经营理念,致力于为客户提供高品质的产品和服务。',
fullName: '诚裕集团有限公司',
registrationNumber: '91110000XXXXXXXX',
established: '2010年',
headquarters: '北京市朝阳区建国路88号',
phone: '400-888-8888',
email: 'contact@chengyu-group.com',
workingHours: '周一至周五 9:00-18:00',
};
// 导航菜单配置
export const NAVIGATION_MENU = [
{ id: 'home', label: '首页', path: '/' },
{ id: 'about', label: '关于我们', path: '/about' },
{ id: 'services', label: '产品服务', path: '/services' },
{ id: 'news', label: '新闻资讯', path: '/news' },
{ id: 'contact', label: '联系我们', path: '/contact' },
];
// 底部导航链接
export const FOOTER_LINKS = {
products: [
{ label: '金融服务', path: '/services/finance' },
{ label: '科技研发', path: '/services/tech' },
{ label: '产业投资', path: '/services/investment' },
{ label: '咨询服务', path: '/services/consulting' },
],
company: [
{ label: '关于我们', path: '/about' },
{ label: '新闻资讯', path: '/news' },
{ label: '招贤纳士', path: '/careers' },
{ label: '联系我们', path: '/contact' },
],
legal: [
{ label: '隐私政策', path: '/privacy' },
{ label: '使用条款', path: '/terms' },
{ label: '免责声明', path: '/disclaimer' },
],
};
// 社交媒体链接
export const SOCIAL_MEDIA = [
{
id: 'wechat',
label: '微信公众号',
icon: 'Wechat',
url: 'https://weixin.qq.com',
description: '诚裕集团官方微信公众号',
},
{
id: 'weibo',
label: '官方微博',
icon: 'Weibo',
url: 'https://weibo.com',
description: '诚裕集团官方微博账号',
},
{
id: 'linkedin',
label: 'LinkedIn',
icon: 'Linkedin',
url: 'https://linkedin.com/company/chengyu-group',
description: '诚裕集团 LinkedIn 主页',
},
];
// 服务项目配置
export const SERVICES = [
{
id: 'finance',
title: '金融服务',
description: '提供专业的财富管理、投资顾问、资产配置等金融服务,为客户创造稳健收益。',
icon: 'TrendingUp',
features: ['财富管理', '投资顾问', '资产配置', '风险管理'],
},
{
id: 'tech',
title: '科技研发',
description: '聚焦人工智能、大数据、云计算等前沿技术,为企业提供数字化转型解决方案。',
icon: 'Cpu',
features: ['人工智能', '大数据分析', '云计算服务', '数字化转型'],
},
{
id: 'investment',
title: '产业投资',
description: '专注于新兴产业投资机会,通过战略投资推动产业升级和价值创造。',
icon: 'Building2',
features: ['战略投资', '产业并购', '创业孵化', '退出管理'],
},
{
id: 'consulting',
title: '咨询服务',
description: '为企业提供战略规划、运营优化、风险管理等专业咨询服务。',
icon: 'Briefcase',
features: ['战略规划', '运营优化', '风险管理', '组织变革'],
},
];
// 新闻分类
export const NEWS_CATEGORIES = [
{ id: 'all', label: '全部' },
{ id: 'company', label: '公司动态' },
{ id: 'industry', label: '行业资讯' },
{ id: 'achievement', label: '荣誉资质' },
];
// 首页统计数据
export const COMPANY_STATS = [
{ id: 'years', label: '成立年限', value: '15', suffix: '年' },
{ id: 'employees', label: '员工数量', value: '500', suffix: '+' },
{ id: 'clients', label: '服务客户', value: '1000', suffix: '+' },
{ id: 'assets', label: '管理资产', value: '500', suffix: '亿' },
];
// 页面元信息
export const PAGE_META = {
home: {
title: '诚裕集团 - 诚信为本,裕及四方',
description: '诚裕集团是一家集科技研发、金融服务、产业投资于一体的综合性企业集团',
},
about: {
title: '关于我们 - 诚裕集团',
description: '了解诚裕集团的发展历程、企业文化和核心价值观',
},
services: {
title: '产品服务 - 诚裕集团',
description: '提供金融服务、科技研发、产业投资、咨询管理等专业服务',
},
news: {
title: '新闻资讯 - 诚裕集团',
description: '了解诚裕集团最新动态、行业资讯和荣誉资质',
},
contact: {
title: '联系我们 - 诚裕集团',
description: '获取诚裕集团联系方式,欢迎随时与我们沟通',
},
};
// 联系方式配置
export const CONTACT_INFO = [
{
id: 'address',
type: 'address',
icon: 'MapPin',
title: '总部地址',
content: COMPANY_INFO.headquarters,
},
{
id: 'phone',
type: 'phone',
icon: 'Phone',
title: '服务热线',
content: COMPANY_INFO.phone,
},
{
id: 'email',
type: 'email',
icon: 'Mail',
title: '商务邮箱',
content: COMPANY_INFO.email,
},
{
id: 'hours',
type: 'text',
icon: 'Clock',
title: '工作时间',
content: COMPANY_INFO.workingHours,
},
];