"use client"; import Link from "next/link"; import styles from "../vip.module.css"; type WelcomeBlockProps = { userName: string | null; }; function getStorage(key: string): string | null { if (typeof window === "undefined") return null; return localStorage.getItem(key); } export function WelcomeBlock({ userName }: WelcomeBlockProps) { const displayName = userName || getStorage("userName") || "会员"; return (

欢迎回来,{displayName}

以下是您的会员资产与推荐动作

🌐 进入星球 qun.hackrobot.cn →
); }