import { Link } from 'wouter' export default function IndexPage() { return (

Page Use Agent 测试页面

用于测试 AI Agent 网页操作能力的综合测试套件

← 回到 Page Use 首页
) } interface TestPageCardProps { title: string description: string path: string icon: string difficulty: string } function TestPageCard({ title, description, path, icon, difficulty }: TestPageCardProps) { const difficultyColors = { 简单: 'bg-green-100 text-green-800 dark:bg-green-900 dark:text-green-200', 中等: 'bg-yellow-100 text-yellow-800 dark:bg-yellow-900 dark:text-yellow-200', 困难: 'bg-red-100 text-red-800 dark:bg-red-900 dark:text-red-200', } return (
{icon}

{title}

{description}

{difficulty} 开始测试 →
) }