import React from 'react'; import { User } from '../../services/membershipService'; import ProfileMenu from '../ProfileMenu'; import PortalBrand from '../layout/PortalBrand'; interface DashboardTopbarProps { activeTab: 'overview' | 'questions' | 'settings' | 'admin'; isAdmin: boolean; isAdminWorkspace: boolean; navigateToTab: (tab: 'overview' | 'questions' | 'settings' | 'admin') => void; enterAdminArea: () => void; exitAdminArea: () => void; onEditProfile: () => void; subtitle?: string; user: User | null; } const userTabs: Array<{ key: 'overview' | 'questions' | 'settings'; label: string }> = [ { key: 'overview', label: 'Overview' }, { key: 'questions', label: 'Profile Questions' }, { key: 'settings', label: 'Profile Settings' } ]; const DashboardTopbar: React.FC = ({ activeTab, isAdmin, isAdminWorkspace, navigateToTab, enterAdminArea, exitAdminArea, onEditProfile, subtitle, user }) => ( ); export default DashboardTopbar;