/* Bart loaf SVG, exposed as React component.
Two sizes — the big mascot and the tiny chat-avatar. Same geometry,
matches assets/bart-loaf.svg from the codebase. */
function BartLoaf({ size = 168, blink = true, className = "bart-loaf" }) {
return (
);
}
function MiniLoaf() {
/* Tiny chat-avatar variant — same character, simpler. */
return (
);
}
function Wordmark({ onClick }) {
return (
bart.
);
}
window.BartLoaf = BartLoaf;
window.MiniLoaf = MiniLoaf;
window.Wordmark = Wordmark;