"use client" import Image from "next/image" export type Wx = { id: string; nickname: string; avatar?: string } export default function WechatAccounts({ accounts }: { accounts: Wx[] }) { if (!accounts?.length) return