Skip to content
https://mindbodygreen.com

Lighthouse Desktop

· 0 checks — Desktop Lighthouse audit -- Performance, Accessibility, Best Practices, and SEO category breakdown.
SCORE
0
GRADE
FIX
0
REVIEW
0
PASS
0
INFO
0

Detailed Report

Audit breakdown by category with detailed findings.

50

Performance

Insights

Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling

Why this matters

Performance issues directly impact user engagement and conversion rates.

3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Layout shifts occur when elements move absent any user interaction. Investigate the causes of layout shifts, such as elements being added, removed, or their fonts changing as the page loads.

Why this matters

Performance issues directly impact user engagement and conversion rates.

headings: [map[key:node label:Element subItemsHeading:map[key:extra] valueType:node] map[granularity:0.001 key:score label:Layout shift score subItemsHeading:map[key:cause valueType:text] valueType:numeric]]
items: [map[node:map[type:text value:Total] score:0.000521] map[node:map[boundingRect:map[bottom:0 height:0 left:0 right:0 top:0 width:0] lhId:page-1-DIV nodeLabel:READLEARNLISTENSHOPSearchAccount path:1,MAIN,0,NAV,0,DIV,0,DIV,1,DIV selector:nav.sc-9k0p8f-0 > div.sc-9k0p8f-1 > div.sc-9k0p8f-2 > div.sc-9k0p8f-8 snippet:<div class="sc-9k0p8f-8 kFcMSV"> type:node] score:0.000521]]
headings: [map[key:node label:Element subItemsHeading:map[key:extra] valueType:node] map[granularity:0.001 key:score label:Layout shift score subItemsHeading:map[key:cause valueType:text] valueType:numeric]]
items: [map[node:map[type:text value:Total] score:0.069125] map[node:map[boundingRect:map[bottom:11791 height:11671 left:0 right:1350 top:120 width:1350] lhId:page-2-DIV nodeLabel:ADVERTISEMENT THIS AD IS DISPLAYED USING THIRD PARTY CONTENT AND WE DO NOT CONT… path:1,HTML,1,BODY,0,DIV,0,DIV,1,MAIN,1,DIV selector:div#___gatsby > div#gatsby-focus-wrapper > main.sc-1mpdzu-0 > div#content snippet:<div id="content" class="sc-1gnxe2i-0 cWYTzz"> type:node] score:0.069125]]
headings: [map[key:node label:Element subItemsHeading:map[key:extra] valueType:node] map[granularity:0.001 key:score label:Layout shift score subItemsHeading:map[key:cause valueType:text] valueType:numeric]]
items: [map[node:map[type:text value:Total] score:0.158887] map[node:map[boundingRect:map[bottom:1279 height:831 left:0 right:1350 top:448 width:1350] lhId:page-4-SECTION nodeLabel:HEALTH 7 Feel-Good Habits That Just Happen To Support A Longer Life By Ava Dur… path:1,HTML,1,BODY,0,DIV,0,DIV,1,MAIN,1,DIV,1,SECTION selector:div#gatsby-focus-wrapper > main.sc-1mpdzu-0 > div#content > section.sc-1p030ta-1 snippet:<section class="sc-1p030ta-1 ikqbBV"> type:node] score:0.158887]]

Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.

Why this matters

Performance issues directly impact user engagement and conversion rates.

A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.

Why this matters

Performance issues directly impact user engagement and conversion rates.

headings: [map[key:source label:Source valueType:source-location] map[granularity:1 key:reflowTime label:Total reflow time valueType:ms]]
items: [map[reflowTime:52.268 source:map[type:text value:[unattributed]]] map[reflowTime:0.638 source:map[column:21070 line:7 type:source-location url:https://ss3.zone.mindbodygreen.com/fp.js urlProvider:network]] map[reflowTime:0.212 source:map[column:30744 line:7 type:source-location url:https://btloader.com/tag?o=5714937848528896&upapi=true urlProvider:network]] map[reflowTime:0.342 source:map[column:30821 line:7 type:source-location url:https://btloader.com/tag?o=5714937848528896&upapi=true urlProvider:network]]]

Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading

Why this matters

Performance issues directly impact user engagement and conversion rates.

lhId: page-0-IMG
nodeLabel: div.sc-1awfvxp-10 > div.sc-11lw232-0 > picture > img
path: 1,MAIN,1,DIV,1,SECTION,2,DIV,0,DIV,1,DIV,0,DIV,0,DIV,1,DIV,0,DIV,0,DIV,0,DIV,0,DIV,0,DIV,0,PICTURE,3,IMG
selector: div.sc-1awfvxp-10 > div.sc-11lw232-0 > picture > img
snippet: <img role="presentation" alt="" width="400" height="224" src="https://mindbodygreen-res.cloudinary.com/image/upload/c_crop,x_0,y_126,w_1…" srcset="https://mindbodygreen-res.cloudinary.com/image/upload/c_crop,x_0,y_126,w_1…">

Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.

Why this matters

Performance issues directly impact user engagement and conversion rates.

description: [preconnect](https://developer.chrome.com/docs/lighthouse/performance/uses-rel-preconnect/) hints help the browser establish a connection earlier in the page load, saving time when the first request for that origin is made. The following are the origins that the page preconnected to.
title: Preconnected origins
description: Add [preconnect](https://developer.chrome.com/docs/lighthouse/performance/uses-rel-preconnect/) hints to your most important origins, but try to use no more than 4.
title: Preconnect candidates

Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.

Why this matters

Performance issues directly impact user engagement and conversion rates.

A long cache lifetime can speed up repeat visits to your page. Learn more about caching.

Why this matters

Performance issues directly impact user engagement and conversion rates.

RequestCache TTLTransfer Size
a.pub.network/mindbodygreen-com/prebid.js1800.0 s188.1 KiB
a.pub.network/mindbodygreen-com/pubfig.engine.js1800.0 s134.0 KiB
connect.facebook.net/en_US/fbevents.js1200.0 s96.6 KiB
assets-jpcust.jwpsrv.com/thumbnails/sidscrj0-720.jpg900.0 s88.8 KiB
content.jwplatform.com/libraries/EFDzAjgt.js180.0 s64.6 KiB
/pagead/managed/js/activeview/current/ufs_web_display.js3600.0 s73.1 KiB
/next-integrations/actions/google-analytics-4-web/aeadee7...0.0 ms55.4 KiB
cdn.cookielaw.org/scripttemplates/202603.1.0/otBannerSdk.js86400.0 s129.9 KiB
/signals/config/1397719964549685?v=2.9.303&r=stable&domai...1200.0 s44.8 KiB
btloader.com/tag?o=5714937848528896&upapi=true300.0 s30.7 KiB
a.pub.network/mindbodygreen-com/pubfig.min.js1800.0 s26.2 KiB
cdn.refersion.com/refersion.js0.0 ms22.0 KiB
cdn.aggle.net/oir/oir.min.js0.0 ms22.0 KiB
evs.cdp.mindbodygreen.com/hny7SreGMj/l6G9nwz8IU.min.js10800.0 s28.8 KiB
b-code.liadm.com/b-01gu.min.js86400.0 s47.1 KiB
ssl.p.jwpcdn.com/player/v/8.47.0/jwpsrv.js900.0 s18.0 KiB
www.google-analytics.com/analytics.js7200.0 s20.9 KiB
/scripts/bundle/65568.js?sid=bbd0f098-f554-48b6-a45b-4ba6...3600.0 s18.3 KiB
www.dwin1.com/19038.js600.0 s15.4 KiB
js.adsrvr.org/up_loader.1.1.0.js0.0 ms12.5 KiB
qhtqr.mindbodygreen.com/load1500.0 s13.7 KiB
scripts.clarity.ms/0.8.59/clarity.js86400.0 s26.2 KiB
evs.cdp.mindbodygreen.com/next-integrations/actions/3962/1faa179dfb20d0a3f5a0.js0.0 ms9.5 KiB
/logos/fe4166b0-7a15-4dc4-a59d-6306cd27023f/019ce08d-31d6...86400.0 s14.7 KiB
www.gstatic.com/eureka/clank/146/cast_sender.js86400.0 s13.4 KiB
cdn.cookielaw.org/scripttemplates/otSDKStub.js86400.0 s9.1 KiB
cdn.refersion.com/xdlspma.min.js0.0 ms3.0 KiB
/next-integrations/actions/google-ec-plugins/00b46d0899db...0.0 ms2.7 KiB
sb.scorecardresearch.com/internal-cs/default/beacon.js86400.0 s6.7 KiB
/next-integrations/actions/algolia-plugins/cb031e19c7ec5e...0.0 ms2.4 KiB
cdn.brandmetrics.com/tag/08abf7aba0a24dd782662a71b5f7b9fb/mindbodygreen.js3600.0 s2.8 KiB
cdn.keywee.co/dist/analytics-1.5.12.min.js259200.0 s7.8 KiB
/npm/@segment/analytics-consent-wrapper-onetrust@latest/d...604800.0 s10.4 KiB
cdn.cookielaw.org/logos/static/powered_by_logo.svg86400.0 s2.5 KiB
a.pub.network/core/imgs/fslogo-green.svg3600.0 s1.3 KiB
js.adsrvr.org/universal_pixel.js0.0 ms934 B
tpc.googlesyndication.com/pagead/js/r20260420/r20110914/abg_lite_fy2021.js1209600.0 s8.4 KiB
ss3.zone.mindbodygreen.com/rr_bot.js599731.0 s5.3 KiB
a.pub.network/core/imgs/1.png?x=2026-04-21T23%3A35%3A58.9843600.0 s643 B
rules.quantcount.com/rules-p-eaiFKB6Cvl1QU.js3600.0 s642 B
js.adsrvr.org/universal_pixel.js0.0 ms441 B
/i?stm=1776814559025&e=pv&url=https%3A%2F%2Fwww.mindbodyg...0.0 ms295 B
/c.js?siteid=bbd0f098-f554-48b6-a45b-4ba6fa7cd2c3&toploc=...0.0 ms295 B
cdn.keywee.co/config/5793.js86400.0 s563 B
/track.php?fingerprint=8b8716f5-980d-47f4-b49d-56b9dc29d6...0.0 ms180 B
/pagead/js/r20260420/r20110914/client/window_focus_fy2021.js1209600.0 s1.6 KiB
/hadron.js?url=https%3A%2F%2Fwww.mindbodygreen.com%2F&ref...432000.0 s186 B
/tr/?id=1397719964549685&ev=KWCEPV&dl=https%3A%2F%2Fwww.m...0.0 ms19 B
/tr/?id=1397719964549685&ev=PageView&dl=https%3A%2F%2Fwww...0.0 ms16 B
cdn.hadronid.net/hadron.js?partner_id=474&_it=prebid432000.0 s71 B
/pagead/managed/js/activeview/current/ufs_web_display.js3600.0 s0 B
/pagead/managed/js/activeview/current/ufs_web_display.js3600.0 s0 B
/pagead/managed/js/activeview/current/ufs_web_display.js3600.0 s0 B
/pagead/managed/js/activeview/current/ufs_web_display.js3600.0 s0 B
/pagead/managed/js/activeview/current/ufs_web_display.js3600.0 s0 B
/pagead/managed/js/activeview/current/ufs_web_display.js3600.0 s0 B
tpc.googlesyndication.com/pagead/js/r20260420/r20110914/abg_lite_fy2021.js1209600.0 s0 B
tpc.googlesyndication.com/pagead/js/r20260420/r20110914/abg_lite_fy2021.js1209600.0 s0 B
tpc.googlesyndication.com/pagead/js/r20260420/r20110914/abg_lite_fy2021.js1209600.0 s0 B
tpc.googlesyndication.com/pagead/js/r20260420/r20110914/abg_lite_fy2021.js1209600.0 s0 B
tpc.googlesyndication.com/pagead/js/r20260420/r20110914/abg_lite_fy2021.js1209600.0 s0 B
tpc.googlesyndication.com/pagead/js/r20260420/r20110914/abg_lite_fy2021.js1209600.0 s0 B
/pagead/js/r20260420/r20110914/client/window_focus_fy2021.js1209600.0 s0 B
/pagead/js/r20260420/r20110914/client/window_focus_fy2021.js1209600.0 s0 B
/pagead/js/r20260420/r20110914/client/window_focus_fy2021.js1209600.0 s0 B
/pagead/js/r20260420/r20110914/client/window_focus_fy2021.js1209600.0 s0 B
/pagead/js/r20260420/r20110914/client/window_focus_fy2021.js1209600.0 s0 B
/pagead/js/r20260420/r20110914/client/window_focus_fy2021.js1209600.0 s0 B

Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size

Why this matters

Performance issues directly impact user engagement and conversion rates.

URLResource SizeEst Savings
body.jar > div#google_image_div > a#aw0 > img.img_ad body.jar > div#google_image_div > a#aw0 > img.img_ad
tpc.googlesyndication.com/simgad/11914965483376605780339.4 KiB299.9 KiB
body.jar > div#google_image_div > a#aw0 > img.img_ad body.jar > div#google_image_div > a#aw0 > img.img_ad
tpc.googlesyndication.com/simgad/1803649169556643458094.7 KiB82.5 KiB
div.sc-y88o5q-3 > div.sc-1ukdvsf-0 > div.sc-1ukdvsf-1 > img div.sc-y88o5q-3 > div.sc-1ukdvsf-0 > div.sc-1ukdvsf-1 > img
/image/upload/f_auto/q_auto/v1753486105/mbg-podcast-card.jpg50.7 KiB50.2 KiB
div.sc-t2m4d3-2 > div.sc-5x73c8-0 > div.sc-5x73c8-1 > video.sc-5x73c8-2 div.sc-t2m4d3-2 > div.sc-5x73c8-0 > div.sc-5x73c8-1 > video.sc-5x73c8-2
/image/upload/f_auto/q_auto/v1767213606/Screenshot_2025-1...32.7 KiB30.3 KiB
[object Object] div.sc-ky2g59-7 > div.sc-ky2g59-8 > div.sc-ky2g59-9 > img.sc-ky2g59-16
/image/upload/fl_sanitize/f_auto/q_auto/v1760734305/mbgMo...20.3 KiB20.2 KiB
[object Object] div.sc-ky2g59-7 > div.sc-ky2g59-8 > div.sc-ky2g59-9 > img.sc-ky2g59-16
/image/upload/fl_sanitize/f_auto/q_auto/v1753802034/TheLo...15.6 KiB15.5 KiB
[object Object] div.sc-ky2g59-7 > div.sc-ky2g59-8 > div.sc-ky2g59-9 > img.sc-ky2g59-16
/image/upload/fl_sanitize/f_auto/q_auto/v1760734270/Beaut...8.2 KiB8.1 KiB
[object Object] div.sc-ky2g59-7 > div.sc-ky2g59-8 > div.sc-ky2g59-9 > img.sc-ky2g59-16
/image/upload/fl_sanitize/f_auto/q_auto/v1754427584/theDa...7.1 KiB7.1 KiB
[object Object] div.sc-ky2g59-7 > div.sc-ky2g59-8 > div.sc-ky2g59-9 > img.sc-ky2g59-16
/image/upload/fl_sanitize/f_auto/q_auto/v1754427199/Edito...5.5 KiB5.2 KiB

These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.

Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Estimated savings: 208 ms

These are the largest layout shifts observed on the page. Each table item represents a single layout shift, and shows the element that shifted the most. Below each item are possible root causes that led to the layout shift. Some of these layout shifts may not be included in the CLS metric value due to windowing. Learn how to improve CLS

Why this matters

Performance issues directly impact user engagement and conversion rates.

ElementLayout shift score
HEALTH 7 Feel-Good Habits That Just Happen To Support A Longer Life By Ava Dur… div#gatsby-focus-wrapper > main.sc-1mpdzu-0 > div#content > section.sc-1p030ta-1
0.159
ADVERTISEMENT THIS AD IS DISPLAYED USING THIRD PARTY CONTENT AND WE DO NOT CONT… div#___gatsby > div#gatsby-focus-wrapper > main.sc-1mpdzu-0 > div#content
0.069
READLEARNLISTENSHOPSearchAccount nav.sc-9k0p8f-0 > div.sc-9k0p8f-1 > div.sc-9k0p8f-2 > div.sc-9k0p8f-8
0.001

Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.

Why this matters

Performance issues directly impact user engagement and conversion rates.

TTI

The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Diagnostics

Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.

Why this matters

Performance issues directly impact user engagement and conversion rates.

URLTotal CPU TimeScript EvaluationScript Parse
www.mindbodygreen.com/1.3 s59 ms3.6 ms
Unattributable873 ms177 ms0.0 ms
www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js867 ms674 ms6.2 ms
/pagead/managed/js/gpt/m202604160201/pubads_impl.js798 ms652 ms53 ms
/pagead/managed/js/activeview/current/ufs_web_display.js569 ms476 ms56 ms
scripts.clarity.ms/0.8.59/clarity.js439 ms384 ms4.3 ms
/next-integrations/integrations/vendor/commons.59560acdd6...224 ms196 ms4.7 ms
www.mindbodygreen.com/app-578430d29f4a4524b3de.js216 ms132 ms7.5 ms
ss3.zone.mindbodygreen.com/gtag/js?id=G-LV31RDQLDF&cx=c&gtm=4e64h1159 ms137 ms20 ms
/88x2wufxrvmc.js?3=CglLNSwrWCc7Lk4iKzImURVQRFxJQBEZXgAfHB...156 ms130 ms17 ms
ss3.zone.mindbodygreen.com/fp.js155 ms83 ms1.1 ms
ssl.p.jwpcdn.com/player/v/8.47.0/jwplayer.core.controls.html5.js139 ms82 ms18 ms
a.pub.network/mindbodygreen-com/pubfig.engine.js129 ms91 ms13 ms
a.pub.network/mindbodygreen-com/prebid.js115 ms82 ms32 ms
/component---src-templates-componentized-page-js-1ea724e5...106 ms91 ms13 ms
www.googletagmanager.com/gtag/js?id=G-BHSDFSD9E694 ms74 ms19 ms
www.googletagmanager.com/gtm.js?id=GTM-TC89CF&l=dataLayer88 ms60 ms18 ms
www.googletagmanager.com/gtag/destination?id=G-XXXXXXXXXX&cx=c&gtm=4e64h187 ms52 ms16 ms
btloader.com/tag?o=5714937848528896&upapi=true79 ms60 ms3.1 ms
content.jwplatform.com/libraries/EFDzAjgt.js77 ms61 ms7.5 ms
/signals/config/1397719964549685?v=2.9.303&r=stable&domai...74 ms65 ms7.3 ms
ssl.p.jwpcdn.com/player/v/8.47.0/provider.hlsjs.js68 ms42 ms18 ms
cdn.cookielaw.org/scripttemplates/202603.1.0/otBannerSdk.js66 ms43 ms18 ms
b-code.liadm.com/b-01gu.min.js61 ms38 ms21 ms
www.googletagmanager.com/gtag/js?id=UA-2384680-1&cx=c&gtm=4e64h156 ms43 ms12 ms
/b0edddd0d7e2ed1e4afeba4b3ab5565f851240ff-782114561dda964...51 ms22 ms25 ms
connect.facebook.net/en_US/fbevents.js51 ms38 ms12 ms

Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work

Why this matters

Performance issues directly impact user engagement and conversion rates.

CategoryTime Spent
Script Evaluation4.8 s
Other1.6 s
Script Parsing & Compilation542 ms
Style & Layout531 ms
Rendering193 ms
Parse HTML & CSS138 ms
Garbage Collection132 ms

Minifying CSS files can reduce network payload sizes. Learn how to minify CSS.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Estimated savings: 0.0 ms 75.4 KiB
URLTransfer SizeEst Savings
.jw-controls,.jw-controls-backdrop,.jw-flag-small-player ...36.3 KiB34.8 KiB
22.9 KiB22.6 KiB
.jw-reset{text-align:left;direction:ltr} …18.7 KiB18.0 KiB

Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Estimated savings: 0.0 ms 1.4 MiB
URLTransfer SizeEst Savings
ssl.p.jwpcdn.com/player/v/8.47.0/provider.hlsjs.js139.1 KiB118.7 KiB
a.pub.network/mindbodygreen-com/prebid.js187.5 KiB113.8 KiB
/b0edddd0d7e2ed1e4afeba4b3ab5565f851240ff-782114561dda964...170.4 KiB92.0 KiB
/pagead/managed/js/gpt/m202604160201/pubads_impl.js187.7 KiB90.0 KiB
/component---src-templates-componentized-page-js-1ea724e5...129.6 KiB75.6 KiB
cdn.cookielaw.org/scripttemplates/202603.1.0/otBannerSdk.js129.7 KiB73.0 KiB
www.googletagmanager.com/gtag/destination?id=G-XXXXXXXXXX&cx=c&gtm=4e64h1136.7 KiB72.6 KiB
www.googletagmanager.com/gtag/js?id=UA-2384680-1&cx=c&gtm=4e64h1125.0 KiB64.2 KiB
www.googletagmanager.com/gtag/js?id=G-BHSDFSD9E6179.4 KiB63.0 KiB
www.googletagmanager.com/gtm.js?id=GTM-TC89CF&l=dataLayer160.1 KiB61.0 KiB
/88x2wufxrvmc.js?3=CglLNSwrWCc7Lk4iKzImURVQRFxJQBEZXgAfHB...148.9 KiB56.9 KiB
ss3.zone.mindbodygreen.com/gtag/js?id=G-LV31RDQLDF&cx=c&gtm=4e64h1155.8 KiB55.1 KiB
a.pub.network/mindbodygreen-com/pubfig.engine.js133.5 KiB53.0 KiB
www.mindbodygreen.com/1a565e99-5d8eaf8db4ae42d95aff.js56.3 KiB52.6 KiB
ssl.p.jwpcdn.com/player/v/8.47.0/jwplayer.core.controls.html5.js109.1 KiB34.8 KiB
connect.facebook.net/en_US/fbevents.js96.5 KiB33.9 KiB
b-code.liadm.com/b-01gu.min.js46.8 KiB33.5 KiB
/pagead/managed/js/activeview/current/ufs_web_display.js73.1 KiB31.0 KiB
/pagead/managed/js/activeview/current/ufs_web_display.js73.1 KiB31.0 KiB
/pagead/managed/js/activeview/current/ufs_web_display.js73.1 KiB31.0 KiB
/pagead/managed/js/activeview/current/ufs_web_display.js73.1 KiB31.0 KiB
/pagead/managed/js/activeview/current/ufs_web_display.js73.1 KiB31.0 KiB
/pagead/managed/js/activeview/current/ufs_web_display.js73.1 KiB31.0 KiB
/next-integrations/actions/google-analytics-4-web/aeadee7...54.9 KiB30.7 KiB
/pagead/managed/js/activeview/current/ufs_web_display.js73.1 KiB30.3 KiB
b-code.liadm.com/b-01gu.min.js46.8 KiB21.9 KiB
content.jwplatform.com/libraries/EFDzAjgt.js64.2 KiB21.9 KiB

Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions

Why this matters

Performance issues directly impact user engagement and conversion rates.

URL
[object Object] div.sc-ky2g59-7 > div.sc-ky2g59-8 > div.sc-ky2g59-9 > img.sc-ky2g59-16
/image/upload/fl_sanitize/f_auto/q_auto/v1760734305/mbgMo...
[object Object] div.sc-ky2g59-7 > div.sc-ky2g59-8 > div.sc-ky2g59-9 > img.sc-ky2g59-16
/image/upload/fl_sanitize/f_auto/q_auto/v1760734305/mbgMo...
[object Object] div.sc-ky2g59-7 > div.sc-ky2g59-8 > div.sc-ky2g59-9 > img.sc-ky2g59-16
/image/upload/fl_sanitize/f_auto/q_auto/v1753802034/TheLo...
[object Object] div.sc-ky2g59-7 > div.sc-ky2g59-8 > div.sc-ky2g59-9 > img.sc-ky2g59-16
/image/upload/fl_sanitize/f_auto/q_auto/v1753802034/TheLo...
[object Object] div.sc-ky2g59-7 > div.sc-ky2g59-8 > div.sc-ky2g59-9 > img.sc-ky2g59-16
/image/upload/fl_sanitize/f_auto/q_auto/v1754427584/theDa...
[object Object] div.sc-ky2g59-7 > div.sc-ky2g59-8 > div.sc-ky2g59-9 > img.sc-ky2g59-16
/image/upload/fl_sanitize/f_auto/q_auto/v1754427584/theDa...
[object Object] div.sc-ky2g59-7 > div.sc-ky2g59-8 > div.sc-ky2g59-9 > img.sc-ky2g59-16
/image/upload/fl_sanitize/f_auto/q_auto/v1760734270/Beaut...
[object Object] div.sc-ky2g59-7 > div.sc-ky2g59-8 > div.sc-ky2g59-9 > img.sc-ky2g59-16
/image/upload/fl_sanitize/f_auto/q_auto/v1760734270/Beaut...
[object Object] div.sc-ky2g59-7 > div.sc-ky2g59-8 > div.sc-ky2g59-9 > img.sc-ky2g59-16
/image/upload/fl_sanitize/f_auto/q_auto/v1754427199/Edito...
[object Object] div.sc-ky2g59-7 > div.sc-ky2g59-8 > div.sc-ky2g59-9 > img.sc-ky2g59-16
/image/upload/fl_sanitize/f_auto/q_auto/v1754427199/Edito...

More information about the performance of your application. These numbers don't directly affect the Performance score.

Optimize DOM size
LCP breakdown
Modern HTTP
Optimize viewport for mobile
Minify JavaScript
User Timing marks and measures 26 user timings
Avoid long main-thread tasks 20 long tasks found
Page didn't prevent back/forward cache restoration
Network Requests
Network Round Trip Times 250 ms
Server Backend Latencies 240 ms
Tasks
Diagnostics
Metrics
Screenshot Thumbnails
Final Screenshot
Script Treemap Data
Resources Summary
Initial server response time was short Root document took 60 ms
INP breakdown
Avoid non-composited animations
84

Accessibility

These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.

ARIA

Each ARIA `role` supports a specific subset of `aria-*` attributes. Mismatching these invalidates the `aria-*` attributes. Learn how to match ARIA attributes to their roles.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
READ Health Food Movement Lifestyle Mindfulness Relationships Planet footer#footer > div.sc-4x6sxh-1 > nav.sc-4x6sxh-2 > div.sc-4x6sxh-3
LEARN Health Coaching+ Functional Nutrition+ Peri/menopause+ footer#footer > div.sc-4x6sxh-1 > nav.sc-4x6sxh-2 > div.sc-4x6sxh-3
LISTEN mindbodygreen podcast clean beauty school podcast footer#footer > div.sc-4x6sxh-1 > nav.sc-4x6sxh-2 > div.sc-4x6sxh-3
SHOP Manage Subscriptions Track Orders Take the quiz Contact About Us footer#footer > div.sc-4x6sxh-1 > nav.sc-4x6sxh-2 > div.sc-4x6sxh-3

Assistive technologies, like screen readers, can't interpret ARIA attributes with invalid values. Learn more about valid values for ARIA attributes.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
MINDBODYGREEN PODCAST div.sc-u2alb8-0 > div.sc-k24rla-0 > div.sc-k24rla-2 > button#327436b2-e654-5e5a-a86b-86b552ecde35-tab
MOVEMENT div.sc-u2alb8-0 > div.sc-k24rla-0 > div.sc-k24rla-2 > button#f5d41e1d-c983-5f4d-943d-4da7df17bf6a-tab
2025 div.sc-iylqjv-0 > div.sc-k24rla-0 > div.sc-k24rla-2 > button#2025-tab

These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.

Contrast

Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
47m div.sc-y88o5q-3 > div.sc-1ukdvsf-0 > div.sc-1ukdvsf-2 > p.sc-1ukdvsf-3
1h 20m div.sc-y88o5q-3 > div.sc-1ukdvsf-0 > div.sc-1ukdvsf-2 > p.sc-1ukdvsf-3
1h 7m div.sc-y88o5q-3 > div.sc-1ukdvsf-0 > div.sc-1ukdvsf-2 > p.sc-1ukdvsf-3
DIGITAL div.sc-5x73c8-0 > div.sc-5x73c8-15 > div.sc-5x73c8-17 > div
ISSUE div.sc-5x73c8-0 > div.sc-5x73c8-15 > div.sc-5x73c8-18 > div

These are opportunities to improve the legibility of your content.

Navigation

Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
MUSCLE HEALTH div.sc-1v93bgp-10 > div.sc-1v93bgp-14 > a > h4.sc-1v93bgp-15
ADVERTISEMENT span.sc-197vltd-0 > section.sc-10p0iao-0 > div.sc-10p0iao-1 > h5
THE LATEST div.sc-1ukjx78-0 > div.sc-1ukjx78-2 > span > h3.sc-1o3jtyn-3
ADVERTISEMENT span.sc-197vltd-0 > section.sc-10p0iao-0 > div.sc-10p0iao-1 > h5
ADVERTISEMENT span.sc-197vltd-0 > section.sc-10p0iao-0 > div.sc-10p0iao-1 > h5
ADVERTISEMENT span.sc-197vltd-0 > section.sc-10p0iao-0 > div.sc-10p0iao-1 > h5
revitalize ‘25 div.sc-iylqjv-3 > div.sc-iylqjv-4 > div.sc-iylqjv-5 > h3.sc-iylqjv-6
ADVERTISEMENT span.sc-197vltd-0 > section.sc-10p0iao-0 > div.sc-10p0iao-1 > h5
Reputable programs & credentials div.sc-odxs61-13 > div.sc-odxs61-18 > div.sc-odxs61-19 > h3.sc-odxs61-21
ADVERTISEMENT span.sc-197vltd-0 > section.sc-10p0iao-0 > div.sc-10p0iao-1 > h5

These are opportunities to improve keyboard navigation in your application.

Best practices

Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
Go to slide 1 of 3 div.sc-1awfvxp-17 > button.sc-1awfvxp-18
Go to slide 2 of 3 div.sc-1awfvxp-17 > button.sc-1awfvxp-18
Go to slide 3 of 3 div.sc-1awfvxp-17 > button.sc-1awfvxp-18

These items highlight common accessibility best practices.

Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
CLEAN COFFEE section.sc-1p030ta-1 > div.sc-1p030ta-4 > div.sc-1p030ta-3 > button.sc-ffzqz8-0
SHOP NOW section.sc-1x7ka9i-3 > div.sc-1x7ka9i-5 > div.sc-1x7ka9i-6 > button.sc-ffzqz8-0
SHOP NOW div#content > section.sc-mo2p08-0 > div.sc-mo2p08-14 > button.sc-ffzqz8-0
WATCH NOW div.sc-1ukjx78-2 > span > div.sc-1o3jtyn-13 > button.sc-ffzqz8-0
VIEW ALL COURSES div#content > div.sc-odxs61-0 > div.sc-odxs61-1 > a.sc-odxs61-3
Interactive controls are keyboard focusable
Interactive elements indicate their purpose and state
The page has a logical tab order
Visual order on the page follows DOM order
User focus is not accidentally trapped in a region
The user's focus is directed to new content added to the page
HTML5 landmark elements are used to improve navigation
Offscreen content is hidden from assistive technology
Custom controls have associated labels
Custom controls have ARIA roles
`[aria-hidden="true"]` is not present on the document `<body>`
`[role]`s have all required `[aria-*]` attributes
Elements with an ARIA `[role]` that require children to contain a specific `[role]` have all required children.
`[role]`s are contained by their required parent element
`[role]` values are valid
`[aria-*]` attributes are valid and not misspelled
Buttons have an accessible name
Image elements have `[alt]` attributes
Input buttons have discernible text.
Form elements have associated labels
`[user-scalable="no"]` is not used in the `<meta name="viewport">` element and the `[maximum-scale]` attribute is not less than 5.
`button`, `link`, and `menuitem` elements have accessible names
ARIA attributes are used as specified for the element's role
`[aria-hidden="true"]` elements do not contain focusable descendents
Elements use only permitted ARIA attributes
Document has a `<title>` element
`<frame>` or `<iframe>` elements have a title
`<html>` element has a `[lang]` attribute
`<html>` element has a valid value for its `[lang]` attribute
Links are distinguishable without relying on color.
Links have a discernible name
List items (`<li>`) are contained within `<ul>`, `<ol>` or `<menu>` parent elements
No element has a `[tabindex]` value greater than 0
Skip links are focusable.
Document has a main landmark.
Deprecated ARIA roles were not used
ARIA IDs are unique
`<video>` elements contain a `<track>` element with `[kind="captions"]`
Identical links have the same purpose.
`[accesskey]` values are unique
Elements with `role="dialog"` or `role="alertdialog"` have accessible names.
ARIA input fields have accessible names
ARIA `meter` elements have accessible names
ARIA `progressbar` elements have accessible names
Elements with the `role=text` attribute do not have focusable descendents.
ARIA toggle fields have accessible names
ARIA `tooltip` elements have accessible names
ARIA `treeitem` elements have accessible names
The page contains a heading, skip link, or landmark region
`<dl>`'s contain only properly-ordered `<dt>` and `<dd>` groups, `<script>`, `<template>` or `<div>` elements.
Definition list items are wrapped in `<dl>` elements
No form fields have multiple labels
`<html>` element has an `[xml:lang]` attribute with the same base language as the `[lang]` attribute.
`<input type="image">` elements have `[alt]` text
Lists contain only `<li>` elements and script supporting elements (`<script>` and `<template>`).
The document does not use `<meta http-equiv="refresh">`
`<object>` elements have alternate text
Select elements have associated label elements.
Cells in a `<table>` element that use the `[headers]` attribute refer to table cells within the same table.
`<th>` elements and elements with `[role="columnheader"/"rowheader"]` have data cells they describe.
`[lang]` attributes have a valid value
Tables have different content in the summary attribute and `<caption>`.
All heading elements contain content.
Uses ARIA roles only on compatible elements
Image elements do not have `[alt]` attributes that are redundant text.
Tables use `<caption>` instead of cells with the `[colspan]` attribute to indicate a caption.
`<td>` elements in a large `<table>` have one or more table headers.
77

Best Practices

General

Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Deprecation / WarningSource
AttributionReporting
Topics
SharedStorage

Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit

Why this matters

Performance issues directly impact user engagement and conversion rates.

SourceDescription
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #418; visit https://reactjs.org/docs/error-decoder.html?invariant=418 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at sa (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:49075) at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121827) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104351) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Error: Minified React error #423; visit https://reactjs.org/docs/error-decoder.html?invariant=423 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at xi (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:121513) at bs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109397) at vs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109325) at gs (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:109188) at as (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:106023) at ls (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:104578) at S (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131226) at MessagePort.T (https://www.mindbodygreen.com/framework-70c6baaeaf58edf7bd69.js:2:131758)
Failed to load resource: the server responded with a status of 400 ()
Failed to load resource: the server responded with a status of 400 ()
Uses HTTPS
Avoids third-party cookies
Allows users to paste into input fields
Avoids requesting the geolocation permission on page load
Avoids requesting the notification permission on page load
Displays images with correct aspect ratio
Serves images with appropriate resolution
Page has the HTML doctype
Properly defines charset
No issues in the `Issues` panel in Chrome Devtools
Ensure CSP is effective against XSS attacks
Use a strong HSTS policy
Ensure proper origin isolation with COOP
Mitigate DOM-based XSS with Trusted Types
Detected JavaScript libraries
Page has valid source maps
Redirects HTTP traffic to HTTPS
Mitigate clickjacking with XFO or CSP
92

SEO

These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.

Content Best Practices

Descriptive link text helps search engines understand your content. Learn how to make links more accessible.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Link destinationLink Text
www.mindbodygreen.com/privacyMore information

Format your HTML in a way that enables crawlers to better understand your app’s content.

Structured data is valid
Page isn’t blocked from indexing
Document has a `<title>` element
Document has a meta description
Page has successful HTTP status code
Links are crawlable
robots.txt is valid
Image elements have `[alt]` attributes
Document has a valid `hreflang`
Document has a valid `rel=canonical`

Send Feedback