Przeglądaj źródła

✨ feat(homepage): 全面重构首页为SaaS产品展示页面并添加截图工具

- 将首页从云存储平台主题重构为企业SaaS产品展示页面
- 更新品牌名称为“长愿青”并添加自定义logo图片
- 重新设计页面布局,添加产品展示区域(微商城、智慧零售、OneCRM、企微助手)
- 优化页脚设计,添加社交媒体图标链接
- 添加两个截图脚本用于自动化生成首页截图
  - `screenshot.js`: 基础截图脚本
  - `web/screenshot-homepage.cjs`: 增强版截图脚本,包含错误处理和文件大小检查
- 添加示例图片资源 `web/public/20251212.jpg`
yourname 1 miesiąc temu
rodzic
commit
6d3413a046

+ 25 - 0
screenshot.js

@@ -0,0 +1,25 @@
+const { chromium } = require('playwright');
+
+(async () => {
+  const browser = await chromium.launch();
+  const page = await browser.newPage();
+
+  // 设置视口大小
+  await page.setViewportSize({ width: 1920, height: 1080 });
+
+  // 导航到本地开发服务器
+  await page.goto('http://localhost:8080');
+
+  // 等待页面加载完成
+  await page.waitForLoadState('networkidle');
+
+  // 截取全屏
+  await page.screenshot({
+    path: 'homepage-full.png',
+    fullPage: true
+  });
+
+  console.log('截图已保存为 homepage-full.png');
+
+  await browser.close();
+})();

BIN
web/public/20251212.jpg


+ 41 - 0
web/screenshot-homepage.cjs

@@ -0,0 +1,41 @@
+const { chromium } = require('playwright');
+const { join } = require('path');
+
+(async () => {
+  console.log('启动浏览器...');
+  const browser = await chromium.launch({ headless: true });
+  const page = await browser.newPage();
+
+  // 设置视口大小
+  await page.setViewportSize({ width: 1920, height: 1080 });
+
+  console.log('导航到 http://localhost:8080 ...');
+  try {
+    await page.goto('http://localhost:8080', { waitUntil: 'networkidle', timeout: 10000 });
+  } catch (error) {
+    console.error('无法连接到 http://localhost:8080');
+    console.error('请先启动开发服务器: pnpm dev');
+    await browser.close();
+    process.exit(1);
+  }
+
+  // 等待页面内容加载
+  await page.waitForSelector('header', { timeout: 5000 });
+  await page.waitForTimeout(1000); // 额外等待确保渲染完成
+
+  // 截取全屏
+  const screenshotPath = join(process.cwd(), 'homepage-full-screenshot.png');
+  console.log('正在截取全屏...');
+  await page.screenshot({
+    path: screenshotPath,
+    fullPage: true,
+    animations: 'disabled' // 禁用动画以获得更清晰的截图
+  });
+
+  console.log(`截图已保存: ${screenshotPath}`);
+  const fs = require('fs');
+  console.log('文件大小:', fs.statSync(screenshotPath).size, 'bytes');
+
+  await browser.close();
+  console.log('完成!');
+})();

+ 119 - 137
web/src/client/home/pages/HomePage.tsx

@@ -12,12 +12,8 @@ const HomePage: React.FC = () => {
       <header className="bg-white shadow-sm border-b border-gray-100 fixed w-full z-10">
         <div className="container mx-auto px-4 py-4 flex justify-between items-center">
           <div className="flex items-center space-x-2">
-            <div className="w-8 h-8 bg-gradient-to-r from-blue-600 to-purple-600 rounded-lg flex items-center justify-center">
-              <svg xmlns="http://www.w3.org/2000/svg" className="h-5 w-5 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
-                <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z" />
-              </svg>
-            </div>
-            <h1 className="text-xl font-bold text-gray-900">云存储平台</h1>
+             <img src='/20251212.jpg' alt="长愿青logo" style={{width: '40px', height: '40px', objectFit: 'cover', borderRadius: '8px'}}></img>
+            <h1 className="text-xl font-bold text-gray-900">长愿青</h1>
           </div>
           
           {user ? (
@@ -55,161 +51,147 @@ const HomePage: React.FC = () => {
       </header>
       
       {/* 主内容区 */}
-      <main className="flex-grow container mx-auto px-4 pt-24 pb-12">
-        {/* 英雄区域 */}
-        <div className="text-center py-12">
-          <h2 className="text-4xl md:text-5xl font-bold text-gray-900 mb-6">
-            安全、高效的
-            <span className="text-transparent bg-clip-text bg-gradient-to-r from-blue-600 to-purple-600"> 文件存储平台</span>
-          </h2>
-          <p className="text-lg text-gray-600 mb-8 max-w-2xl mx-auto">
-            基于 MinIO 构建的企业级云存储解决方案,支持大文件分片上传、断点续传、
-            文件预览与分享,为您的数据提供银行级安全保障。
-          </p>
-          
-          <div className="flex flex-col sm:flex-row gap-4 justify-center">
-            <a
-              href={user ? '/admin/files' : '/register'}
-              className="px-8 py-3 rounded-lg bg-gradient-to-r from-blue-600 to-purple-600 text-white font-medium hover:from-blue-700 hover:to-purple-700 transition-all shadow-lg hover:shadow-xl"
-            >
-              {user ? '进入文件管理' : '立即开始使用'}
-            </a>
-            <a
-              href="/admin"
-              className="px-8 py-3 rounded-lg border border-gray-300 text-gray-700 font-medium hover:bg-gray-50 transition-colors"
-            >
-              管理后台
-            </a>
+      <main className="flex-grow">
+        {/* 头部图片 */}
+        <div className="relative h-96 overflow-hidden">
+          <img
+            src="https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80"
+            alt="SaaS产品展示"
+            className="w-full h-full object-cover"
+          />
+          <div className="absolute inset-0 bg-gradient-to-t from-black/60 to-transparent flex items-end">
+            <div className="container mx-auto px-4 pb-12">
+              <h1 className="text-4xl md:text-5xl font-bold text-white mb-4">
+                企业数字化转型解决方案
+              </h1>
+              <p className="text-xl text-white/90 max-w-2xl">
+                全场景全链路的SaaS产品,助力企业数字升级
+              </p>
+            </div>
           </div>
         </div>
 
-        {/* 功能特性 */}
-        <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mt-16">
-          <div className="bg-white rounded-xl p-6 shadow-sm border border-gray-100 hover:shadow-md transition-shadow">
-            <div className="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mb-4">
-              <svg xmlns="http://www.w3.org/2000/svg" className="h-6 w-6 text-blue-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
-                <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M15 13l-3-3m0 0l-3 3m3-3v12" />
-              </svg>
-            </div>
-            <h3 className="font-semibold text-lg mb-2">大文件上传</h3>
-            <p className="text-gray-600 text-sm">支持分片上传,单个文件最大可达 5TB,断点续传不中断</p>
-          </div>
-          
-          <div className="bg-white rounded-xl p-6 shadow-sm border border-gray-100 hover:shadow-md transition-shadow">
-            <div className="w-12 h-12 bg-green-100 rounded-lg flex items-center justify-center mb-4">
-              <svg xmlns="http://www.w3.org/2000/svg" className="h-6 w-6 text-green-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
-                <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M3 7v10a2 2 0 002 2h14a2 2 0 002-2V9a2 2 0 00-2-2h-6l-2-2H5a2 2 0 00-2 2z" />
-              </svg>
-            </div>
-            <h3 className="font-semibold text-lg mb-2">文件管理</h3>
-            <p className="text-gray-600 text-sm">完整的文件生命周期管理,支持文件预览、下载、分享和版本控制</p>
-          </div>
-          
-          <div className="bg-white rounded-xl p-6 shadow-sm border border-gray-100 hover:shadow-md transition-shadow">
-            <div className="w-12 h-12 bg-purple-100 rounded-lg flex items-center justify-center mb-4">
-              <svg xmlns="http://www.w3.org/2000/svg" className="h-6 w-6 text-purple-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
-                <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z" />
-              </svg>
-            </div>
-            <h3 className="font-semibold text-lg mb-2">安全保障</h3>
-            <p className="text-gray-600 text-sm">端到端加密存储,多重备份机制,确保数据安全可靠</p>
-          </div>
-          
-          <div className="bg-white rounded-xl p-6 shadow-sm border border-gray-100 hover:shadow-md transition-shadow">
-            <div className="w-12 h-12 bg-orange-100 rounded-lg flex items-center justify-center mb-4">
-              <svg xmlns="http://www.w3.org/2000/svg" className="h-6 w-6 text-orange-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
-                <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M8 7h12m0 0l-4-4m4 4l-4 4m0 6H4m0 0l4 4m-4-4l4-4" />
-              </svg>
-            </div>
-            <h3 className="font-semibold text-lg mb-2">多端同步</h3>
-            <p className="text-gray-600 text-sm">支持Web、移动端等多平台访问,随时随地管理您的文件</p>
+        {/* 产品介绍区域 */}
+        <div className="container mx-auto px-4 py-16">
+          <div className="text-center mb-12">
+            <h2 className="text-3xl md:text-4xl font-bold text-gray-900 mb-4">
+              了解我们的SaaS产品
+            </h2>
+            <p className="text-lg text-gray-600 max-w-3xl mx-auto">
+              全场景全链路的SaaS产品,助力企业数字升级
+            </p>
           </div>
-        </div>
 
-        {/* 技术架构 */}
-        <div className="mt-16 bg-white rounded-xl p-8 shadow-sm border border-gray-100">
-          <h3 className="text-2xl font-bold text-center mb-8">技术架构</h3>
-          <div className="grid grid-cols-1 md:grid-cols-3 gap-8">
-            <div className="text-center">
-              <div className="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4">
-                <span className="text-2xl font-bold text-blue-600">R</span>
+          {/* 产品展示 */}
+          <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
+            {/* 微商城 */}
+            <div className="bg-white rounded-2xl p-8 shadow-lg border border-gray-100 hover:shadow-xl transition-all hover:-translate-y-1">
+              <div className="w-16 h-16 bg-gradient-to-r from-blue-500 to-cyan-500 rounded-xl flex items-center justify-center mb-6 mx-auto">
+                <svg xmlns="http://www.w3.org/2000/svg" className="h-8 w-8 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
+                  <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z" />
+                </svg>
               </div>
-              <h4 className="font-semibold mb-2">React 18</h4>
-              <p className="text-sm text-gray-600">现代化的前端框架,提供流畅的用户体验</p>
-            </div>
-            <div className="text-center">
-              <div className="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mx-auto mb-4">
-                <span className="text-2xl font-bold text-green-600">M</span>
+              <h3 className="text-xl font-bold text-center mb-4">微商城</h3>
+              <p className="text-gray-600 text-center mb-6">
+                一站式电商解决方案,支持多店铺管理、营销活动、订单处理等功能
+              </p>
+              <div className="flex justify-center">
+                <span className="px-4 py-1 bg-blue-100 text-blue-600 rounded-full text-sm font-medium">
+                  电商解决方案
+                </span>
               </div>
-              <h4 className="font-semibold mb-2">MinIO</h4>
-              <p className="text-sm text-gray-600">高性能对象存储,支持S3协议的标准云存储</p>
             </div>
-            <div className="text-center">
-              <div className="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mx-auto mb-4">
-                <span className="text-2xl font-bold text-purple-600">T</span>
+
+            {/* 智慧零售 */}
+            <div className="bg-white rounded-2xl p-8 shadow-lg border border-gray-100 hover:shadow-xl transition-all hover:-translate-y-1">
+              <div className="w-16 h-16 bg-gradient-to-r from-green-500 to-emerald-500 rounded-xl flex items-center justify-center mb-6 mx-auto">
+                <svg xmlns="http://www.w3.org/2000/svg" className="h-8 w-8 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
+                  <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z" />
+                </svg>
+              </div>
+              <h3 className="text-xl font-bold text-center mb-4">智慧零售</h3>
+              <p className="text-gray-600 text-center mb-6">
+                智能门店管理系统,整合线上线下销售,提供数据分析与决策支持
+              </p>
+              <div className="flex justify-center">
+                <span className="px-4 py-1 bg-green-100 text-green-600 rounded-full text-sm font-medium">
+                  零售数字化
+                </span>
               </div>
-              <h4 className="font-semibold mb-2">TypeScript</h4>
-              <p className="text-sm text-gray-600">类型安全的开发体验,提升代码质量和可维护性</p>
             </div>
-          </div>
-        </div>
 
-        {/* 文件管理功能预览 */}
-        <div className="mt-16">
-          <div className="text-center mb-8">
-            <h3 className="text-2xl font-bold mb-4">文件管理功能一览</h3>
-            <p className="text-gray-600">完整的文件生命周期管理解决方案</p>
-          </div>
-          
-          <div className="grid grid-cols-1 md:grid-cols-2 gap-8">
-            <div className="bg-white rounded-xl p-6 shadow-sm border border-gray-100">
-              <h4 className="font-semibold text-lg mb-4 flex items-center">
-                <svg xmlns="http://www.w3.org/2000/svg" className="h-5 w-5 mr-2 text-blue-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
-                  <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10" />
+            {/* OneCRM */}
+            <div className="bg-white rounded-2xl p-8 shadow-lg border border-gray-100 hover:shadow-xl transition-all hover:-translate-y-1">
+              <div className="w-16 h-16 bg-gradient-to-r from-purple-500 to-pink-500 rounded-xl flex items-center justify-center mb-6 mx-auto">
+                <svg xmlns="http://www.w3.org/2000/svg" className="h-8 w-8 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
+                  <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z" />
                 </svg>
-                核心功能
-              </h4>
-              <ul className="space-y-2 text-sm text-gray-600">
-                <li>• 支持多种文件格式上传(图片、文档、视频、音频等)</li>
-                <li>• 大文件分片上传,支持断点续传</li>
-                <li>• 文件预览功能(图片、PDF、文本等)</li>
-                <li>• 文件搜索和分类管理</li>
-                <li>• 文件分享和权限控制</li>
-              </ul>
+              </div>
+              <h3 className="text-xl font-bold text-center mb-4">OneCRM</h3>
+              <p className="text-gray-600 text-center mb-6">
+                一体化客户关系管理,涵盖销售、营销、服务全流程,提升客户满意度
+              </p>
+              <div className="flex justify-center">
+                <span className="px-4 py-1 bg-purple-100 text-purple-600 rounded-full text-sm font-medium">
+                  客户管理
+                </span>
+              </div>
             </div>
-            
-            <div className="bg-white rounded-xl p-6 shadow-sm border border-gray-100">
-              <h4 className="font-semibold text-lg mb-4 flex items-center">
-                <svg xmlns="http://www.w3.org/2000/svg" className="h-5 w-5 mr-2 text-green-600" fill="none" viewBox="0 0 24 24" stroke="currentColor">
-                  <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
+
+            {/* 企微助手 */}
+            <div className="bg-white rounded-2xl p-8 shadow-lg border border-gray-100 hover:shadow-xl transition-all hover:-translate-y-1">
+              <div className="w-16 h-16 bg-gradient-to-r from-orange-500 to-red-500 rounded-xl flex items-center justify-center mb-6 mx-auto">
+                <svg xmlns="http://www.w3.org/2000/svg" className="h-8 w-8 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
+                  <path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M8 10h.01M12 10h.01M16 10h.01M9 16H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-5l-5 5v-5z" />
                 </svg>
-                技术特性
-              </h4>
-              <ul className="space-y-2 text-sm text-gray-600">
-                <li>• RESTful API 设计,支持分页查询</li>
-                <li>• 文件元数据存储(类型、大小、描述等)</li>
-                <li>• 用户关联,支持个人文件管理</li>
-                <li>• 时间戳记录,完整的操作日志</li>
-                <li>• 响应式设计,适配多端访问</li>
-              </ul>
+              </div>
+              <h3 className="text-xl font-bold text-center mb-4">企微助手</h3>
+              <p className="text-gray-600 text-center mb-6">
+                企业微信生态集成工具,实现客户沟通、社群运营、自动化营销等功能
+              </p>
+              <div className="flex justify-center">
+                <span className="px-4 py-1 bg-orange-100 text-orange-600 rounded-full text-sm font-medium">
+                  企业微信
+                </span>
+              </div>
             </div>
           </div>
         </div>
+
       </main>
       
       {/* 页脚 */}
-      <footer className="bg-white border-t border-gray-100 py-8">
+      <footer className="bg-white border-t border-gray-100 py-12">
         <div className="container mx-auto px-4">
           <div className="text-center">
-            <p className="text-gray-600 mb-4">
-              基于 MinIO 的企业级云存储解决方案
+            <p className="text-gray-600 mb-6 text-lg">
+              全场景全链路的SaaS产品,助力企业数字升级
             </p>
-            <div className="flex justify-center space-x-6 text-sm">
-              <a href="/admin" className="text-blue-600 hover:text-blue-700 transition-colors">管理后台</a>
-              <a href="/ui" className="text-blue-600 hover:text-blue-700 transition-colors">API 文档</a>
+            <div className="flex justify-center space-x-8 text-sm mb-8">
+              <a href="/admin" className="text-blue-600 hover:text-blue-700 transition-colors font-medium">产品介绍</a>
+              <a href="/admin" className="text-blue-600 hover:text-blue-700 transition-colors font-medium">解决方案</a>
+              <a href="/admin" className="text-blue-600 hover:text-blue-700 transition-colors font-medium">客户案例</a>
+              <a href="/admin" className="text-blue-600 hover:text-blue-700 transition-colors font-medium">联系我们</a>
+            </div>
+            <div className="flex justify-center space-x-6 mb-8">
+              <a href="#" className="text-gray-400 hover:text-blue-600 transition-colors">
+                <svg className="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
+                  <path fillRule="evenodd" d="M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.878v-6.987h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.988C18.343 21.128 22 16.991 22 12z" clipRule="evenodd" />
+                </svg>
+              </a>
+              <a href="#" className="text-gray-400 hover:text-blue-600 transition-colors">
+                <svg className="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
+                  <path d="M8.29 20.251c7.547 0 11.675-6.253 11.675-11.675 0-.178 0-.355-.012-.53A8.348 8.348 0 0022 5.92a8.19 8.19 0 01-2.357.646 4.118 4.118 0 001.804-2.27 8.224 8.224 0 01-2.605.996 4.107 4.107 0 00-6.993 3.743 11.65 11.65 0 01-8.457-4.287 4.106 4.106 0 001.27 5.477A4.072 4.072 0 012.8 9.713v.052a4.105 4.105 0 003.292 4.022 4.095 4.095 0 01-1.853.07 4.108 4.108 0 003.834 2.85A8.233 8.233 0 012 18.407a11.616 11.616 0 006.29 1.84" />
+                </svg>
+              </a>
+              <a href="#" className="text-gray-400 hover:text-blue-600 transition-colors">
+                <svg className="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
+                  <path fillRule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clipRule="evenodd" />
+                </svg>
+              </a>
             </div>
-            <p className="text-gray-400 text-xs mt-4">
-              © {new Date().getFullYear()} 云存储平台. Built with React, TypeScript & MinIO
+            <p className="text-gray-400 text-sm">
+              © {new Date().getFullYear()} 企业数字化SaaS平台. 全场景全链路解决方案
             </p>
           </div>
         </div>