import { observer } from "mobx-react-lite"; import { cn } from "@/lib/utils"; import { workspaceStore } from "@/store"; import UserAvatar from "./UserAvatar"; interface Props { className?: string; collapsed?: boolean; } const BrandBanner = observer((props: Props) => { const { collapsed } = props; const workspaceGeneralSetting = workspaceStore.state.generalSetting; const title = workspaceGeneralSetting.customProfile?.title || "Memos"; const avatarUrl = workspaceGeneralSetting.customProfile?.logoUrl || "/full-logo.webp"; return (