// ============================================ // RAGE ANGEL - SITE-WIDE CODE // Location: Site Code/MasterPage.js // ============================================ import { session } from 'wix-storage'; import wixUsers from 'wix-users'; // ============================================ // SITE INITIALIZATION // ============================================ $w.onReady(() => { // Check if user is logged in const user = wixUsers.currentUser; if (user.loggedIn) { console.log('👼 Welcome back, faithful one!'); session.setItem('rageangel_userId', user.id); } else { console.log('🕊️ Welcome, anonymous sinner!'); session.setItem('rageangel_userId', 'anonymous'); } // Initialize Angel Points for new sessions if (!session.getItem('rageangel_angelPoints')) { session.setItem('rageangel_angelPoints', '0'); } // Check for Purgatory items pending checkPurgatory(); // Inject the Rage Angel footer (optional) injectFooter(); }); // ============================================ // PURGATORY CHECK // ============================================ function checkPurgatory() { const purgatoryCount = session.getItem('rageangel_purgatoryCount') || 0; if (purgatoryCount > 0) { console.log(`🔥 You have ${purgatoryCount} messages in Purgatory.`); // Could show a notification here } } // ============================================ // FOOTER INJECTION // ============================================ function injectFooter() { // This adds the "Angel watches" footer to all pages const footer = document.createElement('div'); footer.id = 'rageangel-footer'; footer.style.cssText = ` position: fixed; bottom: 10px; right: 10px; color: rgba(255, 255, 255, 0.3); font-size: 11px; font-family: 'Inter', sans-serif; text-align: right; pointer-events: none; z-index: 9999; text-shadow: 0 0 10px rgba(0,0,0,0.8); `; footer.innerHTML = ` 🕊️ The Angel watches. You are never alone in your drafts. `; document.body.appendChild(footer); } // ============================================ // GLOBAL EVENT LISTENERS // ============================================ // Listen for page visibility change (user switches tabs) document.addEventListener('visibilitychange', () => { if (document.hidden) { // User left the tab console.log('👀 The Angel sees you stepping away...'); } else { // User returned console.log('🕊️ Welcome back, sinner.'); } }); // Listen for beforeunload (user trying to close) window.addEventListener('beforeunload', (event) => { const wrathScore = parseInt(session.getItem('rageangel_wrathScore') || '0'); if (wrathScore > 5) { // If they're in the middle of a high-wrath exorcism, warn them const recipient = session.getItem('rageangel_recipient'); if (recipient) { event.preventDefault(); event.returnValue = 'You have an unfinished exorcism! The Angel is disappointed.'; } } }); console.log('🕊️ RAGE ANGEL: Site-wide protection active.'); console.log(`📊 Current Angel Points: ${session.getItem('rageangel_angelPoints')}`);
top of page

Explore our services and get in touch

Our Services

  • 01.

    Personalized Project Execution

    Let us handle your unique project from start to finish with our dedicated team. We provide tailored support to ensure your specific needs are met efficiently and effectively, delivering a result that perfectly aligns with your vision and objectives.

  • 02.

    Tailored Client Support

    Receive one-on-one assistance designed around your individual circumstances. Our service offers focused help to navigate challenges and achieve your goals, ensuring you get the precise support you need, when you need it.

  • 03.

    Bespoke Solution Design

    We craft custom solutions to address your specific requirements and desired outcomes. Our process involves understanding your unique situation to engineer a precise and effective plan tailored just for you.

bottom of page