// ============================================================ // SECTION 8 — Final CTA + Footer // Big editorial CTA with product photo + brand footer // ============================================================ function Section8() { // Copy contact text to clipboard with brief inline "Tersalin!" feedback. const copyText = (text, el) => { const done = () => { if (!el) return; const prev = el.textContent; el.classList.add('is-copied'); el.textContent = 'Tersalin!'; setTimeout(() => { el.textContent = prev; el.classList.remove('is-copied'); }, 1200); }; if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(text).then(done).catch(() => { fallbackCopy(text); done(); }); } else { fallbackCopy(text); done(); } }; const fallbackCopy = (text) => { const ta = document.createElement('textarea'); ta.value = text; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); } catch (e) {} document.body.removeChild(ta); }; return ( <> ); } Object.assign(window, { Section8 });