website-config.ts 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /**
  2. * 官网配置文件
  3. * 请根据实际情况修改以下配置
  4. */
  5. export const websiteConfig = {
  6. /** 在线演示站点(「立即体验 / 打开 Demo」等入口) */
  7. demoUrl: "https://demo.cscorp.top",
  8. // GitHub 仓库地址
  9. github: {
  10. repo: "https://github.com/2930134478/AI-CS",
  11. releases: "https://github.com/2930134478/AI-CS/releases",
  12. issues: "https://github.com/2930134478/AI-CS/issues",
  13. readme: "https://github.com/2930134478/AI-CS/blob/master/README.md",
  14. },
  15. // 联系方式
  16. contact: {
  17. email: "contact@example.com", // 可选:邮箱地址
  18. wechat: "", // 可选:微信号或微信群链接
  19. },
  20. // 友情链接(用于互相引流)
  21. // 格式:{ name: "链接名称", url: "链接地址" }
  22. friendLinks: [
  23. { name: "Poixe免费API赞助", url: "https://poixe.com/products/free" },
  24. ] as Array<{ name: string; url: string }>,
  25. // 其他配置
  26. copyright: {
  27. company: "AI-CS 智能客服系统", // 公司/产品名称
  28. year: new Date().getFullYear(),
  29. },
  30. };