feat: SEO 优化与浏览器自动化测试
- 为 admin-frontend、user-frontend、uni-app 添加完整 SEO meta 标签 - 添加结构化数据 (JSON-LD) 提升搜索引擎理解 - 创建 robots.txt 和 sitemap.xml 文件 - 优化移动端 viewport、PWA 支持、theme-color - 添加 Open Graph 和 Twitter Card 元标签 - 创建浏览器自动化测试脚本 (11 项测试全部通过) - 修复 Nginx charset 配置解决编码问题
This commit is contained in:
@@ -2,7 +2,36 @@
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||
<meta name="description" content="TradeMate 工作台 — 外贸小助手的用户工作台。智能翻译、客户管理、营销文案、报价单生成、WhatsApp 集成,一站式外贸全流程工具。" />
|
||||
<meta name="keywords" content="外贸工作台,TradeMate,外贸小助手,AI翻译,客户管理,营销文案,报价单,WhatsApp" />
|
||||
<meta name="author" content="北京宇之然科技中心" />
|
||||
<meta name="robots" content="noindex, nofollow" />
|
||||
<meta name="theme-color" content="#1890ff" />
|
||||
<link rel="canonical" href="https://trade.yuzhiran.com/workspace/" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:title" content="TradeMate 工作台" />
|
||||
<meta property="og:description" content="外贸小助手的用户工作台 — AI 翻译、客户管理、营销文案、报价单、WhatsApp 集成" />
|
||||
<meta property="og:url" content="https://trade.yuzhiran.com/workspace/" />
|
||||
<meta property="og:site_name" content="TradeMate" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:title" content="TradeMate 工作台" />
|
||||
<meta name="twitter:description" content="外贸小助手的用户工作台" />
|
||||
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
|
||||
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "WebApplication",
|
||||
"name": "TradeMate 工作台",
|
||||
"url": "https://trade.yuzhiran.com/workspace/",
|
||||
"applicationCategory": "BusinessApplication",
|
||||
"operatingSystem": "Web",
|
||||
"description": "外贸小助手的用户工作台 — AI 翻译、客户管理、营销文案、报价单、WhatsApp 集成"
|
||||
}
|
||||
</script>
|
||||
<title>TradeMate 工作台</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
User-agent: *
|
||||
Allow: /
|
||||
Disallow: /api/
|
||||
Disallow: /static/
|
||||
Disallow: /assets/
|
||||
|
||||
Sitemap: https://trade.yuzhiran.com/sitemap.xml
|
||||
Reference in New Issue
Block a user