Wise Reservations

Routing to your destination...

` ); // Replace current page content document.open(); document.write(tenantHtml); document.close(); }) .catch(error => { console.error('Failed to load tenant booking page:', error); showError('Failed to load booking interface for ' + tenant); }); } function loadMainLandingPage() { // For now, show a placeholder landing page // TODO: Create actual marketing landing page document.body.innerHTML = `

Wise Reservations

The cooperative alternative to FareHarbor

Coming Soon: Platform Landing Page

This will become the marketing site for the multi-tenant booking platform.

Access Your Booking Site:

Use your subdomain: your-company.wisereservations.com

Historic Stroll Society:

historic.wisereservations.com

Features: No hidden fees • Operator-owned data • Cooperative values

`; } function showError(message) { document.body.innerHTML = `

Error

${message}

`; } // Start routing when page loads document.addEventListener('DOMContentLoaded', routeToDestination); // Also run immediately in case DOMContentLoaded already fired if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', routeToDestination); } else { routeToDestination(); }