import { AppBranding, SaveIndicator } from '@/components/molecules' import { NavigationMenu } from '@/components/organisms/NavigationMenu' import { ToolbarActions } from '@/components/organisms/ToolbarActions' import { ProjectManager } from '@/components/ProjectManager' import { FeatureToggles, Project } from '@/types/project' interface AppHeaderProps { activeTab: string onTabChange: (tab: string) => void featureToggles: FeatureToggles errorCount: number lastSaved: number | null currentProject: Project onProjectLoad: (project: Project) => void onSearch: () => void onShowShortcuts: () => void onGenerateAI: () => void onExport: () => void onPreview?: () => void onShowErrors: () => void } export function AppHeader({ activeTab, onTabChange, featureToggles, errorCount, lastSaved, currentProject, onProjectLoad, onSearch, onShowShortcuts, onGenerateAI, onExport, onPreview, onShowErrors, }: AppHeaderProps) { return (
0} />
) }