"use client"; import Link from "next/link"; import { ThemeToggle } from "@/app/components/ThemeToggle"; import styles from "./vip.module.css"; type VipHeaderProps = { isLoggedIn: boolean; userName?: string | null; onLogout?: () => void; }; export function VipHeader({ isLoggedIn, userName, onLogout }: VipHeaderProps) { return (
🌍 εΌ‚εΊ¦ζ˜Ÿηƒ
); }