"use client"; import { type ReactNode } from "react"; import { VipHeader } from "./VipHeader"; import styles from "./vip.module.css"; type VipLayoutProps = { children: ReactNode; isLoggedIn: boolean; userName?: string | null; userEmail?: string | null; onLogout?: () => void; }; export function VipLayout({ children, isLoggedIn, userName, userEmail, onLogout }: VipLayoutProps) { return (