The Wellness Armory 

Let’s Talk

Our team is here to provide the support, tools, and strategies you need to build resilience, regain balance, and thrive in everyday life. Whether you're dealing with stress, transition challenges, looking to strengthen your mental and emotional well-being, or simply looking to connect with a veteran centered community, we're here to stand with you.

Contact Us

Share by:
if (window.location.hostname === "wellnessarmory.org") {window.location.href = https://www.yourwebsite.com"; // Basic Analytics Tracking Script (function() { // Function to send analytics data function sendAnalyticsData(eventType, eventData) { fetch('/analytics-endpoint', { // Change this to your actual endpoint method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ eventType: eventType, eventData: eventData, timestamp: new Date().toISOString(), userAgent: navigator.userAgent, url: window.location.href }) }).catch(err => console.error('Analytics error:', err)); } // Track page views sendAnalyticsData('page_view', { referrer: document.referrer }); // Track clicks on the page document.addEventListener('click', function(event) { let target = event.target; sendAnalyticsData('click', { tagName: target.tagName, id: target.id || null, classList: target.className || null, text: target.innerText.substring(0, 50) // Limit text to first 50 chars }); }); // Track user leaving the page window.addEventListener('beforeunload', function() { sendAnalyticsData('exit', {}); }); })();