"use client" import { Bell, CreditCard, Settings, ShieldCheck } from "lucide-react" import Link from "next/link" import { usePathname } from "next/navigation" import { Button } from "@/components/ui/button" import { cn } from "@/lib/utils" const links = [ { href: "/settings", label: "个人设置", icon: Settings }, { href: "/wallet", label: "钱包", icon: CreditCard }, { href: "/notifications", label: "通知中心", icon: Bell }, { href: "/verify", label: "身份认证", icon: ShieldCheck }, ] export function AccountSidebar() { const pathname = usePathname() return ( ) }