About.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. <template>
  2. <div class="about-container">
  3. <div class="hero-section">
  4. <div class="logo-area">
  5. <div class="logo-circle">
  6. <span class="logo-text">AI</span>
  7. </div>
  8. <h1>AI Agent</h1>
  9. </div>
  10. <p class="version">版本 1.0.0</p>
  11. </div>
  12. <div class="content-section">
  13. <div class="info-card">
  14. <h2>关于我们</h2>
  15. <p>
  16. AI Agent
  17. 是一个强大且灵活的自动化工作流平台,帮助团队和个人构建智能化的业务流程。我们致力于让自动化变得简单、高效且易于维护。
  18. </p>
  19. </div>
  20. <div class="features-grid">
  21. <div class="feature-card">
  22. <SvgIcon name="zap" class="feature-icon" size="30"/>
  23. <h3>高性能</h3>
  24. <p>优化的执行引擎,确保工作流快速可靠运行</p>
  25. </div>
  26. <div class="feature-card">
  27. <SvgIcon name="shield" class="feature-icon" size="30"/>
  28. <h3>安全可靠</h3>
  29. <p>企业级安全标准,保护你的数据和凭证</p>
  30. </div>
  31. <div class="feature-card">
  32. <SvgIcon name="users" class="feature-icon" size="30"/>
  33. <h3>团队协作</h3>
  34. <p>支持多人协作,共同构建和维护工作流</p>
  35. </div>
  36. <div class="feature-card">
  37. <SvgIcon name="code" class="feature-icon" size="30"/>
  38. <h3>开放扩展</h3>
  39. <p>支持自定义节点和集成,满足个性化需求</p>
  40. </div>
  41. </div>
  42. <div class="footer-text">
  43. <p>&copy; 2026 AI Agent. All rights reserved.</p>
  44. </div>
  45. </div>
  46. </div>
  47. </template>
  48. <script setup lang="ts"></script>
  49. <style lang="less" scoped>
  50. .about-container {
  51. max-width: 1000px;
  52. margin: 0 auto;
  53. padding: 40px 20px;
  54. .hero-section {
  55. text-align: center;
  56. padding: 60px 0;
  57. background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  58. border-radius: 20px;
  59. margin-bottom: 40px;
  60. color: #fff;
  61. .logo-area {
  62. margin-bottom: 16px;
  63. .logo-circle {
  64. width: 120px;
  65. height: 120px;
  66. background: rgba(255, 255, 255, 0.2);
  67. backdrop-filter: blur(10px);
  68. border-radius: 50%;
  69. display: flex;
  70. align-items: center;
  71. justify-content: center;
  72. margin: 0 auto 24px;
  73. border: 3px solid rgba(255, 255, 255, 0.3);
  74. .logo-text {
  75. font-size: 48px;
  76. font-weight: 900;
  77. letter-spacing: -2px;
  78. }
  79. }
  80. h1 {
  81. font-size: 42px;
  82. font-weight: 700;
  83. margin: 0;
  84. }
  85. }
  86. .version {
  87. font-size: 16px;
  88. opacity: 0.9;
  89. }
  90. }
  91. .content-section {
  92. .info-card {
  93. background: #fff;
  94. border-radius: 12px;
  95. padding: 32px;
  96. margin-bottom: 24px;
  97. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  98. h2 {
  99. font-size: 24px;
  100. font-weight: 600;
  101. color: #333;
  102. margin-bottom: 16px;
  103. }
  104. p {
  105. font-size: 15px;
  106. color: #666;
  107. line-height: 1.8;
  108. }
  109. }
  110. .features-grid {
  111. display: grid;
  112. grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  113. gap: 20px;
  114. margin-bottom: 24px;
  115. .feature-card {
  116. background: #fff;
  117. border-radius: 12px;
  118. padding: 28px;
  119. text-align: center;
  120. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  121. transition: all 0.3s;
  122. &:hover {
  123. transform: translateY(-4px);
  124. box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  125. }
  126. .feature-icon {
  127. font-size: 40px;
  128. color: #667eea;
  129. margin-bottom: 16px;
  130. }
  131. h3 {
  132. font-size: 18px;
  133. font-weight: 600;
  134. color: #333;
  135. margin-bottom: 8px;
  136. }
  137. p {
  138. font-size: 14px;
  139. color: #666;
  140. line-height: 1.6;
  141. }
  142. }
  143. }
  144. .footer-text {
  145. text-align: center;
  146. padding: 20px 0;
  147. p {
  148. font-size: 14px;
  149. color: #999;
  150. }
  151. }
  152. }
  153. }
  154. </style>