import { ArrowLeft, Gamepad2 } from "lucide-react" import Link from "next/link" const stats = [ { value: "12,000+", label: "认证打手" }, { value: "98.6%", label: "好评率" }, { value: "50,000+", label: "完成订单" }, ] export default function AuthLayout({ children }: { children: React.ReactNode }) { return (
{/* Left: Brand Panel */}
聚玩

发现你的
专属游戏搭档

聚玩连接玩家与专业打手,提供安全、透明、高效的游戏陪玩服务。无论你是寻找搭档还是展示技能,这里都是你的舞台。

{stats.map((stat) => (
{stat.value}
{stat.label}
))}
© 2025 聚玩. All rights reserved.
{/* Right: Auth Form */}
{/* Mobile header */}
返回首页
聚玩
{children}
) }