/** * 诚裕集团企业官网 - 常量定义 */ // 企业基本信息 export const COMPANY_INFO = { name: '诚裕集团', nameEn: 'Chengyu Group', slogan: '以专业为本,以稳健致远', description: '诚裕集团是一家以综合服务为核心的集团型企业,围绕客户在经营与管理中的关键需求,提供系统化、可持续的解决方案。本网站内容为占位示例,后续将根据集团正式资料进行完善与更新。', fullName: '诚裕集团', registrationNumber: '统一社会信用代码(待补充)', established: '成立时间(待补充)', headquarters: '总部地址(待补充)', phone: '联系电话(待补充)', email: '邮箱(待补充)', workingHours: '工作时间(待补充)', }; // 导航菜单配置 export const NAVIGATION_MENU = [ { id: 'home', label: '首页', path: '/' }, { id: 'about', label: '集团概况', path: '/about' }, { id: 'scope', label: '服务范围', path: '/services' }, { id: 'cases', label: '服务案例', path: '/cases' }, { id: 'news', label: '新闻中心', path: '/news' }, { id: 'learning', label: '培训学习', path: '/learning' }, { id: 'assistant', label: 'AI智能助手', path: '/assistant' }, { 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: '围绕客户关键需求提供系统化服务(占位内容)', }, cases: { title: '服务案例', description: '典型项目与解决思路展示(占位内容)', }, news: { title: '新闻中心', description: '集团新闻、行业动态与公告(占位内容)', }, learning: { title: '培训学习', description: '课程与学习资源(占位内容)', }, contact: { title: '联系我们', description: '联系信息与留言反馈(占位内容)', }, assistant: { title: 'AI智能助手', 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, }, ];