import type { ViewerProfile } from '@/entities/user'; import type { AppHubVisualMode } from '@/shared/config/appHubVisualMode'; import { cn } from '@/shared/lib/cn'; import { ProfileMenu } from '@/features/profile-menu'; interface AppTopBarProps { user: ViewerProfile; oneLiner: string; onLogout: () => void; visualMode?: AppHubVisualMode; onOpenBilling?: () => void; } export const AppTopBar = ({ user, oneLiner, onLogout, visualMode = 'light', onOpenBilling, }: AppTopBarProps) => { const cinematic = visualMode === 'cinematic'; return (

VibeRoom

); };