'use client'; import { Bell, Search, ChevronDown } from 'lucide-react'; import { useAuthStore } from '@/stores/auth-store'; import { useWorkspaceStore } from '@/stores/workspace-store'; export default function AppHeader() { const user = useAuthStore((state) => state.user); const currentWorkspace = useWorkspaceStore((state) => state.currentWorkspace); return (
{/* Page title & workspace info */}

{currentWorkspace?.name || 'Dashboard'}

{currentWorkspace?.plan?.toUpperCase() || 'FREE'} Plan

{/* Search bar */}
⌘K
{/* Right side actions */}
{/* Notifications */} {/* User menu */}
); }