"use client"; export default function SettingModal({ visible, onClose, }: { visible: boolean; onClose: () => void; }) { // 如果不显示,直接 return null if (!visible) return null; return ( // 全屏遮罩
{/* 弹框主体 - 从底部滑上来 */}
{/* 顶部导航 */}

Setting

{/* 头像区域 */}
LOGO
{/* 菜单列表 */}
{/* Information */}
Information
{/* Subscribe 开关 */}
Subscribe
{/* Log Out */}
{/* 版本号 */}
v1.1.0
); }