/* Loominost logo — uses uploaded PNG asset */ const LOGO_SRC = "assets/loominost-logo.png"; const LOGO_RATIO = 622 / 202; // ~3.08 const LoominostLogo = ({ size = 22, color = "var(--ink)" }) => { // size = visual height of the wordmark in px const height = size + 8; const width = Math.round(height * LOGO_RATIO); const isLight = color === "#fff" || color === "white"; return ( Loominost ); }; // Backwards compatible — anywhere the standalone mark was used, render the full logo const LoominostMark = (props) => ; Object.assign(window, { LoominostMark, LoominostLogo });