// ============================================================================ // public/shell/topbar.jsx — Top bar with title, search, theme toggle, profile // ---------------------------------------------------------------------------- // Title + subtitle come from ROUTE_META in app.jsx. // Profile pill shows: user name, plan badge (or "Super Admin" for admin view). // ============================================================================ function TopBar({ meta, view, theme, onToggleTheme, onMenu, session, subscription }) { const user = session?.user; const tenant = session?.tenant; const planName = subscription?.planName || (tenant?.status === "trial" ? "Trial" : "Free"); return (
{/* Mobile menu trigger */}

{meta.title}

{meta.subtitle && {meta.subtitle}}
{/* Desktop global search */}
⌘ K
{/* Mobile search icon */} {/* Theme toggle */} {/* Notifications */} {/* Profile pill */}
{user?.name || "—"}
{view === "admin" ? "Super Admin" : `${planName} plan`}
); } window.TopBar = TopBar;