diff --git a/app/digital-humans/page.tsx b/app/digital-humans/page.tsx
new file mode 100644
index 0000000..0928ed4
--- /dev/null
+++ b/app/digital-humans/page.tsx
@@ -0,0 +1,233 @@
+import Link from "next/link"
+import Image from "next/image"
+
+const digitalHumans = [
+ {
+ id: 1,
+ name: "小雅",
+ avatar: "/human/0ac179c47f1957d03ccc6858e6351f1d.jpeg",
+ category: "商务助手",
+ description: "专业的商务顾问,擅长企业咨询、市场分析、商务谈判等场景,为您提供智能化的商业决策支持。",
+ color: "from-purple-500 to-pink-500",
+ bgColor: "bg-purple-50",
+ textColor: "text-purple-600",
+ },
+ {
+ id: 2,
+ name: "书淇",
+ avatar: "/human/166c0f9202afc463e9264529764ddb7f.jpg",
+ category: "教育导师",
+ description: "知识渊博的教育专家,专注于在线教学、课程辅导、学习规划,让学习更高效、更有趣。",
+ color: "from-blue-500 to-cyan-500",
+ bgColor: "bg-blue-50",
+ textColor: "text-blue-600",
+ },
+ {
+ id: 3,
+ name: "樱桃",
+ avatar: "/human/541ab483fbafcc7b5476a63dbd350fb5.jpg",
+ category: "生活陪伴",
+ description: "活泼可爱的虚拟伙伴,擅长日常聊天、情感陪伴、生活建议,为您的生活增添温暖与乐趣。",
+ color: "from-pink-500 to-rose-500",
+ bgColor: "bg-pink-50",
+ textColor: "text-pink-600",
+ },
+ {
+ id: 4,
+ name: "星辰",
+ avatar: "/human/8365454662deb53637146f8b81476124.png",
+ category: "科技顾问",
+ description: "前沿科技专家,精通AI技术、编程开发、技术咨询,助力您在数字时代保持竞争力。",
+ color: "from-indigo-500 to-blue-500",
+ bgColor: "bg-indigo-50",
+ textColor: "text-indigo-600",
+ },
+ {
+ id: 5,
+ name: "墨竹",
+ avatar: "/human/a4c1285f4d131a65821a541c1d58181a.jpg",
+ category: "创意设计",
+ description: "富有创意的设计师,擅长视觉设计、艺术创作、品牌策划,为您的创意项目注入灵感。",
+ color: "from-green-500 to-emerald-500",
+ bgColor: "bg-green-50",
+ textColor: "text-green-600",
+ },
+ {
+ id: 6,
+ name: "清风",
+ avatar: "/human/aa5332e4434fcf0cc8bcb9a4d8122ad0.jpeg",
+ category: "健康顾问",
+ description: "专业的健康管理师,提供健康咨询、饮食建议、运动指导,守护您和家人的健康生活。",
+ color: "from-teal-500 to-cyan-500",
+ bgColor: "bg-teal-50",
+ textColor: "text-teal-600",
+ },
+ {
+ id: 7,
+ name: "小悦",
+ avatar: "/human/dd709ef07f783ef0b912127191004580.jpg",
+ category: "娱乐主播",
+ description: "活力四射的娱乐主播,擅长直播互动、内容策划、粉丝运营,为您的娱乐生活带来无限精彩。",
+ color: "from-orange-500 to-amber-500",
+ bgColor: "bg-orange-50",
+ textColor: "text-orange-600",
+ },
+ {
+ id: 8,
+ name: "心灵",
+ avatar: "/human/decbb93c49351eae57b4f3251cab9f26.jpg",
+ category: "心理咨询",
+ description: "温柔专业的心理咨询师,提供情绪疏导、心理测评、压力管理,守护您的心理健康。",
+ color: "from-violet-500 to-purple-500",
+ bgColor: "bg-violet-50",
+ textColor: "text-violet-600",
+ },
+]
+
+const categories = ["全部", "商务助手", "教育导师", "生活陪伴", "科技顾问", "创意设计", "健康顾问", "娱乐主播", "心理咨询"]
+
+export default function DigitalHumansPage() {
+ return (
+
+ {/* 导航栏 */}
+
+
+
+ {/* Hero 区域 */}
+
+
+
🧑💼
+
+ 数字人库
+
+
+ 探索我们的虚拟数字人角色,每个数字人都拥有独特的个性、专业技能和应用场景,
+ 为您的工作和生活提供智能化服务。
+
+
+
+
+ {/* 分类筛选 */}
+
+
+
+ {categories.map((category) => (
+
+ ))}
+
+
+
+
+ {/* 数字人列表 */}
+
+
+
+ {digitalHumans.map((human) => (
+
+ {/* 图片区域 */}
+
+
+ {/* 左下角遮罩显示姓名 */}
+
+
{human.name}
+
+
+
+ ))}
+
+
+
+
+ {/* 特性介绍 */}
+
+
+
为什么选择我们的数字人
+
+
+
+ 🎭
+
+
逼真形象
+
超写实数字人形象,支持表情动画、语音交互,带来沉浸式体验
+
+
+
+ 🧠
+
+
智能交互
+
基于大语言模型,支持多轮对话、上下文理解、智能决策
+
+
+
+ 🎯
+
+
场景定制
+
针对不同应用场景深度优化,满足商务、教育、生活等多元需求
+
+
+
+
+
+
+ {/* 底部 */}
+
+
+
+
+ AI
+
+
江苏冲浪软件科技有限公司
+
+
+ © 2026 江苏冲浪软件科技有限公司 · AI 智能体广场
+
+
+
+
+
+ )
+}
diff --git a/app/page.tsx b/app/page.tsx
index da7276b..c542375 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -1,4 +1,4 @@
-import { prisma } from "@//app/lib/prisma"
+import { prisma } from "@/app/lib/prisma"
import Link from "next/link"
import Image from "next/image"
@@ -15,8 +15,7 @@ export default async function HomePage() {
})
const categories = await prisma.category.findMany({
- include: { _count: { select: { agents: true } },
- },
+ include: { _count: { select: { agents: true } } },
})
return (
@@ -151,6 +150,52 @@ export default async function HomePage() {
+ {/* 数字人应用 */}
+
+
+
+
数字人应用
+
探索虚拟数字人角色,体验沉浸式智能交互
+
+
+ {[
+ { name: "小雅", avatar: "👩💼", category: "商务助手", color: "from-purple-500 to-pink-500" },
+ { name: "书淇", avatar: "👩🎓", category: "教育导师", color: "from-blue-500 to-cyan-500" },
+ { name: "樱桃", avatar: "👧", category: "生活陪伴", color: "from-pink-500 to-rose-500" },
+ ].map((human) => (
+
+
+
+ {human.avatar}
+
+
+
{human.name}
+
+ {human.category}
+
+
+
+
+ 点击查看数字人详情,开启智能交互体验
+
+
+ 查看数字人库 →
+
+
+ ))}
+
+
+
+ 查看全部数字人 →
+
+
+
+
+
{/* 智能分类与使用场景 */}
diff --git a/public/human/0ac179c47f1957d03ccc6858e6351f1d.jpeg b/public/human/0ac179c47f1957d03ccc6858e6351f1d.jpeg
new file mode 100644
index 0000000..0dbec68
Binary files /dev/null and b/public/human/0ac179c47f1957d03ccc6858e6351f1d.jpeg differ
diff --git a/public/human/166c0f9202afc463e9264529764ddb7f.jpg b/public/human/166c0f9202afc463e9264529764ddb7f.jpg
new file mode 100644
index 0000000..72887e2
Binary files /dev/null and b/public/human/166c0f9202afc463e9264529764ddb7f.jpg differ
diff --git a/public/human/541ab483fbafcc7b5476a63dbd350fb5.jpg b/public/human/541ab483fbafcc7b5476a63dbd350fb5.jpg
new file mode 100644
index 0000000..3a62e1e
Binary files /dev/null and b/public/human/541ab483fbafcc7b5476a63dbd350fb5.jpg differ
diff --git a/public/human/8365454662deb53637146f8b81476124.png b/public/human/8365454662deb53637146f8b81476124.png
new file mode 100644
index 0000000..09c497d
Binary files /dev/null and b/public/human/8365454662deb53637146f8b81476124.png differ
diff --git a/public/human/a4c1285f4d131a65821a541c1d58181a.jpg b/public/human/a4c1285f4d131a65821a541c1d58181a.jpg
new file mode 100644
index 0000000..6c106dd
Binary files /dev/null and b/public/human/a4c1285f4d131a65821a541c1d58181a.jpg differ
diff --git a/public/human/aa5332e4434fcf0cc8bcb9a4d8122ad0.jpeg b/public/human/aa5332e4434fcf0cc8bcb9a4d8122ad0.jpeg
new file mode 100644
index 0000000..eb55be1
Binary files /dev/null and b/public/human/aa5332e4434fcf0cc8bcb9a4d8122ad0.jpeg differ
diff --git a/public/human/dd709ef07f783ef0b912127191004580.jpg b/public/human/dd709ef07f783ef0b912127191004580.jpg
new file mode 100644
index 0000000..c192f8f
Binary files /dev/null and b/public/human/dd709ef07f783ef0b912127191004580.jpg differ
diff --git a/public/human/decbb93c49351eae57b4f3251cab9f26.jpg b/public/human/decbb93c49351eae57b4f3251cab9f26.jpg
new file mode 100644
index 0000000..f506789
Binary files /dev/null and b/public/human/decbb93c49351eae57b4f3251cab9f26.jpg differ
diff --git a/public/human/f121c588976e6ce3ea1a72467babf14e.jpg b/public/human/f121c588976e6ce3ea1a72467babf14e.jpg
new file mode 100644
index 0000000..e79c333
Binary files /dev/null and b/public/human/f121c588976e6ce3ea1a72467babf14e.jpg differ