/** * Coming Soon Overlay * Displays over Koha pages until Stripe is configured */ (function() { 'use strict'; // Check if we should show the overlay const shouldShowOverlay = () => { // Only show on Koha pages const isKohaPage = window.location.pathname.includes('/koha'); return isKohaPage; }; // Create and inject overlay if (shouldShowOverlay()) { const overlayHTML = `

Koha Donation System

Coming Soon

What is Koha?

Koha (Māori for "gift") is our upcoming donation system to support the Tractatus Framework. We're currently finalizing payment processing integration and will launch soon.

Infrastructure deployed and ready. Payment processing activation in progress.

Return to Homepage

Questions? Contact support@agenticgovernance.digital

`; document.body.insertAdjacentHTML('beforeend', overlayHTML); } })();