// MiraBlogChat — editorial wrapper that embeds the Mira chat widget at the // bottom of every blog post, pre-seeded with a context-appropriate question. // // Depends on: // - blog-shared.jsx (BS colors, BlogEyebrow, Reveal) // - mira-chat.jsx (MiraChat component) // // Load order in blog-post.html: // blog-shared.jsx → blog-index.jsx → mira-chat.jsx → mira-blog-chat.jsx → blog-post.jsx function MiraBlogChat({ seedQuestion }) { if (!seedQuestion) return null; return (
{/* Divider + editorial framing */}
{/* Eyebrow */}
Keep the conversation going
{/* Heading */}

Ask Mira about this

{/* Subtitle */}

Mira is KeepAfter's AI coach — the same one in the app. Ask her anything about what you just read. Your first question is already queued up.

{/* Chat widget — centered */}
); } window.MiraBlogChat = MiraBlogChat;