Initial release: platform entry and navigation hub.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-29 11:41:58 +08:00
commit 68c74baf5b
2 changed files with 57 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
.DS_Store
Thumbs.db
*.log
.env
.env.*

52
index.html Normal file
View File

@@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>未来之宠 · 平台入口</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
</head>
<body class="bg-gradient-to-br from-orange-50 via-white to-teal-50 min-h-screen flex items-center justify-center p-6 font-sans">
<div class="max-w-2xl w-full">
<div class="text-center mb-10">
<div class="text-5xl mb-4">🐾</div>
<h1 class="text-3xl font-bold text-gray-800">未来之宠 · 宠物服务与教育认证平台</h1>
<p class="text-gray-500 mt-2">杭州未来之宠科技有限公司</p>
<p class="text-sm text-orange-600 mt-1">宠工委联合认证 · 宠物服务与教育平台</p>
</div>
<div class="grid gap-4">
<a href="../miniapp/pages/home/index.html" target="_blank" rel="noopener noreferrer" class="block bg-white rounded-2xl p-6 shadow-lg border border-orange-100 hover:border-orange-300 hover:shadow-xl transition group">
<div class="flex items-center gap-4">
<div class="w-14 h-14 bg-orange-100 rounded-2xl flex items-center justify-center group-hover:scale-110 transition"><i class="fa-brands fa-weixin text-orange-500 text-2xl"></i></div>
<div class="flex-1">
<h2 class="font-bold text-gray-800">微信小程序</h2>
<p class="text-sm text-gray-500 mt-1">首页 · 学考证 · 持证服务 · 宠工委 · 我的</p>
</div>
<i class="fa-solid fa-arrow-right text-gray-300 group-hover:text-orange-500 transition"></i>
</div>
</a>
<a href="../management/index.html#/dashboard" target="_blank" rel="noopener noreferrer" class="block bg-white rounded-2xl p-6 shadow-lg border border-gray-100 hover:border-gray-300 hover:shadow-xl transition group">
<div class="flex items-center gap-4">
<div class="w-14 h-14 bg-slate-100 rounded-2xl flex items-center justify-center group-hover:scale-110 transition"><i class="fa-solid fa-chart-line text-slate-600 text-2xl"></i></div>
<div class="flex-1">
<h2 class="font-bold text-gray-800">运营管理后台</h2>
<p class="text-sm text-gray-500 mt-1">控制台 · 学考证 · 服务入驻 · 学员 · 线索中心</p>
</div>
<i class="fa-solid fa-arrow-right text-gray-300 group-hover:text-slate-600 transition"></i>
</div>
</a>
<a href="../ai-customer-service/pages/embed/index.html" target="_blank" rel="noopener noreferrer" class="block bg-white rounded-2xl p-6 shadow-lg border border-teal-100 hover:border-teal-300 hover:shadow-xl transition group">
<div class="flex items-center gap-4">
<div class="w-14 h-14 bg-teal-100 rounded-2xl flex items-center justify-center group-hover:scale-110 transition"><i class="fa-solid fa-robot text-teal-600 text-2xl"></i></div>
<div class="flex-1">
<h2 class="font-bold text-gray-800">AI 智能客服</h2>
<p class="text-sm text-gray-500 mt-1">24h 在线咨询 · 考证/服务/加盟 · 用户对话界面</p>
</div>
<i class="fa-solid fa-arrow-right text-gray-300 group-hover:text-teal-600 transition"></i>
</div>
</a>
</div>
</div>
</body>
</html>