import { useEffect } from "react";
import { motion } from "framer-motion";
import { Card, CardContent } from "@/components/ui/card";
import { Button } from "@/components/ui/button";
import { Sparkles } from "lucide-react";
export default function HIJIOPage() {
useEffect(() => {
document.title = "HIJ.IO - 联合智能";
}, []);
return (
HIJ.IO | 联合智能
Hybrid Intelligence Junction | AI 与人类智慧的交汇点
{features.map((feature, index) => (
{feature.title}
{feature.description}
))}
);
}
const features = [
{ title: "大数据驱动", description: "海量数据分析,驱动智能决策。" },
{ title: "人工智能增强", description: "深度学习、机器学习,赋能行业智能化。" },
{ title: "RAG 技术", description: "检索增强生成,提高 AI 可靠性与精准度。" },
{ title: "数据库优化", description: "高效数据存储与智能检索结合。" },
{ title: "行业经验融合", description: "结合专业领域知识,实现精准 AI 预测。" },
{ title: "可解释 AI", description: "透明化智能决策,让 AI 更具信任度。" }
];