Close Menu
Health JustfineHealth Justfine

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    YALI takes mental health campaign to Ibadan motor park

    June 28, 2026

    MISOORA Unveils Revolutionary K-Beauty Skincare Range Emphasizing Longevity Over Anti-Aging

    June 28, 2026

    Can exercise and anti-inflammatories fend off aging? A study aims to find out

    June 28, 2026
    Facebook X (Twitter) Instagram
    Health JustfineHealth Justfine
    Facebook X (Twitter) Instagram
    • Home
    • General Health News
    • Sleep Health
    • Mental Wellness
    • Fitness & Recovery
    • Health Tech & Wearables
    • More
      • Longevity & Anti-Aging
      • Women’s Hormone Health
      • Gut Health & Microbiome
      • Metabolic Health & Blood Sugar
      • Nutrition & Anti-Inflammatory Foods
    Health JustfineHealth Justfine
    Home»Mental Wellness»Digital mental wellness platform for teens launching in New Mexico
    Mental Wellness

    Digital mental wellness platform for teens launching in New Mexico

    HJFadminBy HJFadminJune 28, 2026No Comments9 Mins Read
    Facebook Twitter Pinterest LinkedIn Tumblr Reddit WhatsApp Email
    Digital mental wellness platform for teens launching in New Mexico
    Share
    Facebook Twitter LinkedIn Pinterest WhatsApp Email

    PROCESS. IT STARTS AT 530 AT THE HAROLD REYNOLDS AUDITORIUM IN SANTA FE. THE NEW FREE WELLNESS APP FOR TEENS IS COMING TO NEW MEXICO. THE PLATFORM, CALLED NAVY ACCESS, WILL BEGIN ON SUNDAY FOR TEENS AGES 13 TO 18 IN TAOS COUNTY. IT WILL HELP CONNECT TEENS WITH CRISIS RESOURCES. THE STATE SAYS WE ARE STARTING IN TAOS BECAUSE THAT COMMUNITY HAS ENDURED UNIMAGINABLE LOSS, AND WE ARE COMMITTED TO RESPONDING WITH MEANINGFUL, PRACTICAL SUPPORT. THEY’LL CELEBRATE THE LAUNCH OF
    Editorial Standards ⓘ
    Editorial Standards ⓘ
    Teens in Taos County will soon have free access to a new digital mental wellness platform designed to help young people manage stress, regulate emotions and seek support before challenges escalate into crises.Beginning Sunday, adolescents ages 13 to 18 in Taos County will be able to use Navi, a digital mental wellness platform that state officials plan to expand across all 33 New Mexico counties.State leaders say the initiative is intended to provide young people with accessible, evidence-based mental wellness tools while strengthening support systems in communities throughout New Mexico.”We are starting in Taos because the community has endured unimaginable loss, and we are committed to responding with meaningful, practical support,” said Nick Boukas, director of the New Mexico Health Care Authority’s Behavioral Health Services Division. “This launch is about giving young people something they can use right away—and about listening closely as we expand to other communities across the state.”The rollout follows a pilot program in Taos County, where local teens tested the platform and helped customize it for community needs. Through a youth advisory board, participants provided feedback on the app’s language, content and design. State officials also plan to establish a youth ambassador network of 100 to 200 students to help guide outreach efforts as the program expands statewide.Navi offers a range of brief, evidence-informed activities focused on emotional regulation, stress management and help-seeking behaviors. The platform also includes built-in safety features that connect users to crisis resources when needed.Unlike some digital mental health tools, Navi is not diagnostic and does not rely on generative artificial intelligence. The web-based platform is available in both English and Spanish and can be accessed on smartphones, tablets and computers, including iOS and Android devices. An offline version is also available to support rural, frontier and tribal communities where internet connectivity may be limited.To celebrate the launch, the state will host a Teen Wellness Festival from 2 to 6 p.m. on Sunday, June 28, at Red Willow Park in Taos. The event will feature music, food, family-friendly activities and participation from more than 35 local organizations.Additional information about the platform is available through Navi’s website.
    TAOS COUNTY, N.M. —

    Teens in Taos County will soon have free access to a new digital mental wellness platform designed to help young people manage stress, regulate emotions and seek support before challenges escalate into crises

    Beginning Sunday, adolescents ages 13 to 18 in Taos County will be able to use Navi, a digital mental wellness platform that state officials plan to expand across all 33 New Mexico counties

    State leaders say the initiative is intended to provide young people with accessible, evidence-based mental wellness tools while strengthening support systems in communities throughout New Mexico

    “We are starting in Taos because the community has endured unimaginable loss, and we are committed to responding with meaningful, practical support,” said Nick Boukas, director of the New Mexico Health Care Authority’s Behavioral Health Services Division. “This launch is about giving young people something they can use right away—and about listening closely as we expand to other communities across the state.”

    The rollout follows a pilot program in Taos County, where local teens tested the platform and helped customize it for community needs. Through a youth advisory board, participants provided feedback on the app’s language, content and design. State officials also plan to establish a youth ambassador network of 100 to 200 students to help guide outreach efforts as the program expands statewide

    Navi offers a range of brief, evidence-informed activities focused on emotional regulation, stress management and help-seeking behaviors. The platform also includes built-in safety features that connect users to crisis re

    Unlike some digital mental health tools, Navi is not diagnostic and does not rely on generative artificial intelligence. The web-based platform is available in both English and Spanish and can be accessed on smartphones, tablets and computers, including iOS and Android devices. An offline version is also available to support rural, frontier and tribal communities where internet connectivity may be limited.

    To celebrate the launch, the state will host a Teen Wellness Festival from 2 to 6 p.m. on Sunday, June 28, at Red Willow Park in Taos. The event will feature music, food, family-friendly activities and participation from more than 35 local organizations

    Additional information about the platform is available through Navi’s website

    `;
    }

    function refreshWeatherIframe(containerId) {
    var iframeId = ‘weather-iframe-‘ + containerId;
    var iframe = document.getElementById(iframeId);
    if (iframe && iframe.src) {
    var originalSrc = iframe.src;
    iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=’ + Date.now();
    }
    }

    function initializeWeatherBox(container) {
    var containerId = container.getAttribute(‘data-container-id’);
    var isWeatherBoxV2 = containerId === ‘home-weather-v2’;

    function switchWeatherTab(tabName, clickedElement) {
    container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
    tab.classList.remove(‘open’);
    tab.setAttribute(‘aria-selected’, ‘false’);
    });

    clickedElement.classList.add(‘open’);
    clickedElement.setAttribute(‘aria-selected’, ‘true’);

    container.querySelectorAll(‘[data-content-id]’).forEach(function(content) {
    content.style.display = ‘none’;
    content.setAttribute(‘hidden’, ‘true’);
    });

    var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
    if (targetContent) {
    targetContent.style.display = ‘block’;
    targetContent.removeAttribute(‘hidden’);
    }
    }

    function loadWeatherData() {
    // If weather data is already being loaded, wait for it
    if (window.weatherDataPromise) {
    window.weatherDataPromise.then(function(data) {
    if (data && data.data) {
    var weatherContainer = container.closest(‘.weather-box-container’);
    if (weatherContainer) {
    weatherContainer.style.display = ‘flex’;
    updateCurrentWeather(data.data);
    updateForecastTabs(data.data);
    updateWeatherAlertsBar(data.data);
    }
    }
    });
    return;
    }

    var location = { zip: window.DEFAULT_ZIPCODE };

    try {
    var storedLocations = localStorage.getItem(‘hrst.zip.history’);
    if (storedLocations) {
    var locations = JSON.parse(storedLocations);
    if (locations && locations.length > 0) {
    location = locations[0];
    }
    }
    } catch (e) {}

    var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;

    if (window.fetch) {
    window.weatherDataPromise = fetch(apiUrl)
    .then(function(response) { return response.json(); })
    .then(function(data) {
    if (data && data.data) {
    var article = container.closest(‘.article–wrapper’);
    var weatherContainer = container.closest(‘.weather-box-container’);
    if (weatherContainer) {
    weatherContainer.style.display = ‘flex’;
    updateCurrentWeather(data.data);
    updateForecastTabs(data.data);
    updateWeatherAlertsBar(data.data);
    }
    return data;
    }
    })
    .catch(function(error) {
    console.error(‘Error loading weather:’, error);
    // Reset to unknown background on error
    updateWeatherBackground(‘unknown’);
    });
    }
    }

    function updateWeatherAlertsBar(weatherData) {
    var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
    if (!weatherWatchHeader) return;

    var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
    var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);

    if (weatherData.alerts_count > 0) {
    weatherWatchHeader.className = ‘weather-watch-header has-alerts’;
    if (weatherWatchText) {
    weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
    }
    if (weatherWatchLink) {
    if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
    weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
    weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
    }
    weatherWatchLink.setAttribute(‘href’, ‘/alerts’);
    weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, ‘/alerts’);”);
    }
    } else {
    weatherWatchHeader.className = ‘weather-watch-header’;
    if (weatherWatchText) {
    weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
    }
    if (weatherWatchLink) {
    var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
    var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
    if (initialHref) {
    weatherWatchLink.setAttribute(‘href’, initialHref);
    }
    if (initialOnclick) {
    weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
    }
    }
    }
    }

    function updateCurrentWeather(weatherData) {
    if (weatherData.current) {
    var tempValue = weatherData.current.temp_f || ”;
    var skyValue = weatherData.current.sky || ”;
    var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;

    var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
    if (tempEl) {
    tempEl.textContent = tempValue;
    tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
    }

    var iconEl = container.querySelector(‘.weather-grid–current-icon’);
    if (iconEl && weatherData.current.icon_name) {
    iconEl.className = ‘weather-grid–current-icon weather-current-icon icon icon-weather-‘ + weatherData.current.icon_name;
    }

    var skyEl = container.querySelector(‘.weather-grid–sky’);
    if (skyEl) {
    skyEl.textContent = skyValue;
    skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
    }

    var feelsEl = container.querySelector(‘.weather-grid–feels’);
    if (feelsEl) {
    feelsEl.textContent = feelsLikeValue + ‘°F’;
    feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
    }

    var weatherContainer = container.querySelector(‘.weather-temp-container’);
    if (weatherContainer) {
    var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
    skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
    weatherContainer.setAttribute(‘aria-label’, summary);
    }

    updateWeatherBackground(weatherData.current.icon_name);
    }
    }

    function updateWeatherBackground(iconName) {
    try {
    var bgPath = weatherImages.backgrounds[iconName] || weatherImages.backgrounds.unknown;
    container.style.backgroundImage = ‘url(‘ + bgPath + ‘)’;
    } catch (e) {
    console.log(‘Error updating weather background:’, e);
    }
    }

    function updateForecastTabs(weatherData) {
    var visibleItems = isWeatherBoxV2 ? 6 : 5;

    if (weatherData.hourly) {
    var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
    if (hourlyContainer) {
    var html = ”;
    var maxHours = Math.min(visibleItems, weatherData.hourly.length);

    for (var i = 0; i < maxHours; i++) {
    var hour = weatherData.hourly[i];
    html += generateForecastItem({
    timeLabel: hour.hour_display,
    iconName: hour.icon_name,
    primaryTemp: hour.temp_f,
    secondaryInfo: hour.precip_chance + ‘%’
    });
    }
    hourlyContainer.innerHTML = html;
    }
    }

    if (weatherData.daily) {
    var dailyContainer = container.querySelector(‘.weather-daily-forecast’);
    if (dailyContainer) {
    var html = ”;
    var maxDays = Math.min(visibleItems, weatherData.daily.length);

    for (var i = 0; i < maxDays; i++) {
    var day = weatherData.daily[i];
    var dayName = getShortDayName(day.day);

    html += generateForecastItem({
    timeLabel: dayName,
    iconName: day.icon_name,
    primaryTemp: day.high_f,
    secondaryInfo: day.precip_chance + ‘%’
    });
    }
    dailyContainer.innerHTML = html;
    }
    }
    }

    function getShortDayName(dayName) {
    switch (dayName) {
    case ‘Today’:
    return ‘Today’;
    case ‘Tomorrow’:
    return ‘Tmrw’;
    case ‘Sunday’:
    return ‘Sun’;
    case ‘Monday’:
    return ‘Mon’;
    case ‘Tuesday’:
    return ‘Tue’;
    case ‘Wednesday’:
    return ‘Wed’;
    case ‘Thursday’:
    return ‘Thu’;
    case ‘Friday’:
    return ‘Fri’;
    case ‘Saturday’:
    return ‘Sat’;
    default:
    return dayName;
    }
    }

    container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
    var isActive = tab.classList.contains(‘open’);
    tab.setAttribute(‘tabindex’, ‘0’); // Both tabs focusable for VoiceOver
    tab.setAttribute(‘role’, ‘tab’);
    tab.setAttribute(‘aria-selected’, isActive);

    tab.addEventListener(‘keydown’, function(e) {
    var tabs = Array.from(container.querySelectorAll(‘[data-tab-id]’));
    var currentIndex = tabs.indexOf(this);

    switch(e.key) {
    case ‘ArrowLeft’:
    e.preventDefault();
    var prevIndex = currentIndex > 0 ? currentIndex – 1 : tabs.length – 1;
    tabs[prevIndex].focus();
    break;
    case ‘ArrowRight’:
    e.preventDefault();
    var nextIndex = currentIndex < tabs.length – 1 ? currentIndex + 1 : 0;
    tabs[nextIndex].focus();
    break;
    case ‘Enter’:
    case ‘ ‘:
    e.preventDefault();
    var tabId = this.getAttribute(‘data-tab-id’);
    switchWeatherTab(tabId, this);
    if (tabId === ‘hourly’) {
    dispatchWeatherGA4Event(‘click_hourly’, ‘click’, containerId);
    } else if (tabId === ‘daily’) {
    dispatchWeatherGA4Event(‘click_daily’, ‘click’, containerId);
    }
    break;
    }
    });

    tab.onclick = function() {
    var tabId = this.getAttribute(‘data-tab-id’);
    switchWeatherTab(tabId, this);
    if (tabId === ‘hourly’) {
    dispatchWeatherGA4Event(‘click_hourly’, ‘click’, containerId);
    } else if (tabId === ‘daily’) {
    dispatchWeatherGA4Event(‘click_daily’, ‘click’, containerId);
    }
    return false;
    };
    });

    loadWeatherData();

    window.addEventListener(‘pageshow’, function(event) {
    if (event.persisted) {
    // Fix for weather radar iframe appearing gray after browser back/forward navigation
    // When user navigates back, the page loads from browser cache but the iframe
    // content doesn’t restore properly, showing a gray screen instead of the radar map
    // This forces a fresh reload of the iframe by adding a timestamp parameter
    setTimeout(function() {
    refreshWeatherIframe(containerId);
    }, 300);
    }
    });
    }

    document.querySelectorAll(‘.weather-sidebar’).forEach(function(weatherBox) {
    initializeWeatherBox(weatherBox);
    });

    });

    KOAT Logo
    X
    Google Logo
    Make KOAT a preferred source on Google

    Digital mental platform teens Wellness
    HJFadmin
    • Website

    Related Posts

    YALI takes mental health campaign to Ibadan motor park

    June 28, 2026

    Working Together to Nurture Mental Wellness – Burnaby Schools – School District 41, Burnaby, BC, Canada

    June 28, 2026

    Hong Kong Mental Wellness Association and FUJIFILM instax Aim to Break Filter Culture Among Gen Z | LBBOnline

    June 28, 2026
    Leave A Reply Cancel Reply

    Don't Miss
    Mental Wellness

    YALI takes mental health campaign to Ibadan motor park

    By HJFadminJune 28, 20260

    The Young African Leaders Initiative (YALI) Network, Oyo State, has taken its mental health awareness campaign to the Bodija Motor Park in Ibadan, educating commercial drivers on stress management, emotional well-being and the importance of seeking help when overwhelmed

    MISOORA Unveils Revolutionary K-Beauty Skincare Range Emphasizing Longevity Over Anti-Aging

    June 28, 2026

    Can exercise and anti-inflammatories fend off aging? A study aims to find out

    June 28, 2026

    45-year-old longevity researcher: How I keep my body and brain healthy—it’s what ‘your grandmother probably told you to do’

    June 28, 2026
    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo
    Our Picks

    Expert shares 6 tips to recover faster and stronger after intense workout sessions- Moneycontrol.com

    June 28, 2026

    These Viral Fitness & Wellness Recovery Products Are Taking Over TikTok Ahead of Prime Day

    June 28, 2026

    Life Time Has Created a Fitness and Recovery Paradise – Muscle & Fitness

    June 28, 2026

    The Movement Twenty Four: New 24-Hour Fitness and Recovery Hub Opens Down South

    June 28, 2026

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    About Us

    Welcome to HealthJustFine.com, your trusted destination for reliable health news, wellness insights, and evidence-based information that empowers you to live a healthier life.
    Our mission is to make quality health information accessible, easy to understand, and relevant for everyone. We believe that staying informed is the first step toward making better decisions about your health, nutrition, fitness, and overall well-being. That’s why we deliver timely updates on the latest medical research, healthy living trends, preventive care, and wellness innovations from around the world.

    Our Picks

    YALI takes mental health campaign to Ibadan motor park

    June 28, 2026

    MISOORA Unveils Revolutionary K-Beauty Skincare Range Emphasizing Longevity Over Anti-Aging

    June 28, 2026

    Can exercise and anti-inflammatories fend off aging? A study aims to find out

    June 28, 2026
    Latest Posts

    Expert shares 6 tips to recover faster and stronger after intense workout sessions- Moneycontrol.com

    June 28, 2026

    These Viral Fitness & Wellness Recovery Products Are Taking Over TikTok Ahead of Prime Day

    June 28, 2026

    Life Time Has Created a Fitness and Recovery Paradise – Muscle & Fitness

    June 28, 2026
    Facebook X (Twitter) Instagram Pinterest
    • About Us
    • Contact Us
    • Terms & Conditions
    • Privacy Policy
    • Disclaimer

    © 2026 healthjustfine.com. All rights reserved. Designed by DD.

    Type above and press Enter to search. Press Esc to cancel.