import Link from "next/link"; export default function HelpModal({ helpvisible, helponClose, }: { helpvisible: boolean; helponClose: () => void; }) { // 如果不显示,直接 return null if (!helpvisible) return null; return (
{/* 弹框主体 - 从底部滑上来 */}
{/* 顶部导航 */}

HELP & SUPPORT

{/* 菜单列表 */}
{/* Information */} {/*
*/} Help & FAQ {/*
*/} {/* Address */} {/*
*/} Track Order {/*
*/} {/* help & Support */} {/*
*/} Hair Care Tips {/*
*/}
); }