/* ============================================================ New Liberty Homes — Shared components ============================================================ */ const { useState } = React; const Icon = window.Icon; // ── Logo Mark ──────────────────────────────────────────────── function BrandMark({ size = 52 }) { return (
{/* Stylized house with star */}
); } // ── Status Badge ───────────────────────────────────────────── function StatusBadge({ status }) { const cls = status.toLowerCase(); return {status}; } // ── 3D Tour Modal (embedded iframe — stays on same tab) ────── function Tour3DModal({ url, title, onClose }) { React.useEffect(() => { const onKey = (e) => { if (e.key === 'Escape') onClose(); }; window.addEventListener('keydown', onKey); const prev = document.body.style.overflow; document.body.style.overflow = 'hidden'; return () => { window.removeEventListener('keydown', onKey); document.body.style.overflow = prev; }; }, [onClose]); return (
e.stopPropagation()}>
▶ 3D Tour{title ? ` — ${title}` : ''}