import Link from "next/link"; export default function HelpModal({ helpvisible, helponClose, }: { helpvisible: boolean; helponClose: () => void; }) { // 如果不显示,直接 return null if (!helpvisible) return null; return (