website-config.ts 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. /** QQ 交流群号(纯数字或展示文案);留空则页脚不显示 */
  20. qqGroupNumber: "",
  21. /** 可选:一键加群链接(如 https://qm.qq.com/q/xxxxx ),有则页脚可点击 */
  22. qqGroupJoinUrl: "",
  23. },
  24. // 友情链接(用于互相引流)
  25. // 格式:{ name: "链接名称", url: "链接地址" }
  26. friendLinks: [
  27. { name: "Poixe免费API赞助", url: "https://poixe.com/products/free" },
  28. ] as Array<{ name: string; url: string }>,
  29. // 其他配置
  30. copyright: {
  31. company: "AI-CS 智能客服系统", // 公司/产品名称
  32. year: new Date().getFullYear(),
  33. },
  34. };