// ============================================================================ // 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 (