"use client" import Link from "next/link" import { useMemo } from "react" import { cn } from "@/lib/utils" export default function TopNav({ activePath }: { activePath?: string }) { const items = useMemo( () => [ { href: "/", label: "首页" }, { href: "/data-platform", label: "数据中台" }, { href: "/user-portrait", label: "用户画像" }, { href: "/ai-assistant", label: "AI 助手" }, { href: "/user-valuation", label: "用户资产估值" }, ], [], ) return ( ) }