/* global React, CharMark */
/* PHASE 4-A (Brand Kit V2) — Final CTA + Follow Us modal.
Per BRIEF V2 §6-9:
- Top: 3-monster lineup (ハピモン① / オイモン王座Ver / シーパーズ右版)
- Center: FEED THE MONSTERS. (brand red) / モンスターに、PAINを食わせろ。
- White background, Pixar-tone bright.
Closer beat: voice flips from monster→user to user-as-actor. */
const { useEffect: _useE4, useState: _useS4 } = React;
// ============= Final CTA =============
function FinalCTA({ onFollow }) {
return (
FEED THE MONSTERS.
モンスターに、PAIN を食わせろ。
);
}
// ============= Follow Us modal =============
function FollowModal({ open, onClose }) {
_useE4(() => {
if (!open) return;
const onKey = (e) => { if (e.key === 'Escape') onClose(); };
window.addEventListener('keydown', onKey);
return () => window.removeEventListener('keydown', onKey);
}, [open, onClose]);
_useE4(() => {
if (!open) return;
const prev = document.body.style.overflow;
document.body.style.overflow = 'hidden';
return () => { document.body.style.overflow = prev; };
}, [open]);
if (!open) return null;
const onBackdrop = (e) => { if (e.target === e.currentTarget) onClose(); };
return (
— GATEWAY · 入り口
ANOTHER WORLD AWAITS.
モンスターランドの入り口、開放中。
— Esc / ✕ / 外側クリックで戻る —
);
}
Object.assign(window, { FinalCTA, FollowModal });