"use client" import { ProtectedRoute } from "@/components/protected-route" import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { Label } from "@/components/ui/label" import { ArrowLeft, Copy, Link as LinkIcon, Eye, } from "lucide-react" import Link from "next/link" export default function TestLinksPage() { const handleCopyLink = () => { const url = `${typeof window !== 'undefined' ? window.location.origin : ''}/test-link` navigator.clipboard.writeText(url) alert('連結已複製到剪貼簿') } return (
{/* Header */}

測驗連結管理

管理測驗連結的發送和追蹤測試完成狀態

{/* Main Content */}
測驗連結 分享此連結給受測者,點擊後會自動收集用戶資料並開始測驗 {/* 連結顯示區域 */}
{/* 功能說明 */}

功能說明:

  • • 受測者點擊連結後會要求填寫基本資料
  • • 系統會自動創建用戶帳號(密碼:Aa123456)
  • • 填寫完成後自動跳轉到測驗選擇頁面
  • • 支援邏輯思維、創意能力、綜合測試三種類型
{/* 預覽按鈕 */}
) }