// logo.jsx — AutoCut wordmark + glyph // // Glyph metaphor: a film frame with a play triangle inside, sliced by an // accent cut line. Reads as "video editor" without being literal. function AutoCutGlyph({ size = 28, accent = "var(--accent)" }) { const s = size; return ( {/* outer frame */} {/* sprocket holes top/bottom — film feel */} {/* play triangle */} {/* accent cut line — slices across */} ); } function AutoCutLogo({ size = 28 }) { return (
SkilssVideo .AI v2.4
); } Object.assign(window, { AutoCutGlyph, AutoCutLogo });