Mobile 375 × 812

Desktop 1440 × 900

Score: 73 / 100
Based on 8 categories, 0 sections
Room to improve — your 2.5s load time is above Google's 2.5s 'Good' threshold.
Several missing protections leave your users and data exposed.
Several issues make your site difficult for assistive technology users.
Well-optimized for search — your content is discoverable.
Solid infrastructure — fast server responses across the board.
Mostly compliant — a few items need attention.
Rich content metadata — your pages look great everywhere.
Reasonable footprint with room for optimization.
The overall score is a weighted average of individual category scores. Categories with more impact on user experience and security carry more weight.
Weights reflect general web best practices. Individual needs may differ.
Content-Security-Policy header is missing
Security gaps expose your site and users to attacks, eroding trust.
No Content-Security-Policy header found
Security gaps expose your site and users to attacks, eroding trust.
1 control(s) without accessible label
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
No <main> landmark found
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
123 HTTP requests — consider bundling or reducing
Performance issues directly impact user engagement and conversion rates.
High impact, low effort — start here.
High impact, requires investment.
Small gains, minimal effort.
Nothing in this quadrant — good news.
Low impact, high effort — do last.
Nothing in this quadrant — good news.
[](https://beavercheck.com/results/81bea8a5-16e1-4506-addc-fe5a02d067e8)<a href="https://beavercheck.com/results/81bea8a5-16e1-4506-addc-fe5a02d067e8"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Finfluencermarketinghub.com" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Finfluencermarketinghub.comThis badge auto-updates with your latest scan result.
Your site performs reasonably well, but a few targeted fixes could meaningfully improve results. Your LCP of 2.5s exceeds Google's 2.5s 'Good' threshold and the 1 performance issue below directly contributes to it. Addressing the critical issues below would have the most immediate impact on your user trust.
8 barrier(s) likely increasing bounce by ~26%.
Page loads in 2.5s
+5% bounceEvery additional 100ms above 2.5s costs conversions — you're 1ms over
Fix: Target <2.5s LCP: defer non-critical scripts and optimize the hero image
Page feels frozen for 984ms
+5% bounceClicks on the primary CTA are ignored while JavaScript runs
Fix: Break up long tasks; defer non-critical JavaScript to post-hydration
No HSTS header
+1% bounceReturning visitors are briefly exposed to downgrade attacks on first request
Fix: Set Strict-Transport-Security: max-age=31536000; includeSubDomains
No Content-Security-Policy header
+1% bounceHigher XSS blast radius — one compromised script can exfiltrate the checkout form
Fix: Ship a reporting-only CSP first, then enforce once violations are clean
1 form field(s) without a label
+2% bounceScreen readers skip unlabeled fields; autofill can't identify them; checkout abandonment spikes
Fix: Associate every input with a visible <label for="…">; add autocomplete attributes
Content is hard to read
+2% bounceGraduate-level reading difficulty — limits the addressable audience for product or blog pages
Fix: Shorten sentences; replace jargon with plain language; target Flesch ease ≥60
No skip-to-content link
+1% bounceKeyboard and screen-reader users must tab through the entire header on every page
Fix: Add a visible-on-focus <a href="#main">Skip to content</a> as the first focusable element
12 broken link(s) on the page
+5% bounceClicks land on 404s — trust drops and the session often ends
Fix: Fix or remove the broken destinations surfaced on the Content tab
Preliminary CRO audit — each barrier links to the tab with detailed analysis.
€510 investment → €2.43/month returns + EUR 120,500,000 risk avoided
€510
6h · 5 findings
€2.43 /mo
~€29 / year
EUR 120,500,000
if kept compliant
€85 — in quick wins — start here for the fastest payback
Figures combine localized regulatory fine ceilings, search/conversion value priced against local CPC, and bandwidth waste estimates. Results depend on implementation quality and audience composition. Not legal or financial advice.
6.0 developer hours at €85/hr
Based on European Union rates (€85/hr)
Start here for the best return on investment
€10,041,668 / month at risk
~€120,500,010 / year if left unfixed
€120,500,000
+11 more
€0.86 /mo
11567.7 MB/mo × 0.074 EUR/GB
Compliance figures represent the statutory maximum fine for the most severe triggered category, capped per regulation — not the sum of per-finding penalties. Based on published regulatory fine ranges. This is not legal advice.
Unique monthly visitors from your analytics
Purchases, signups, or key actions
Optional — for revenue estimation
more engaged visitors from reduced bounce
Fix 4 critical issues to capture this value
Based on Google/Deloitte research ("Milliseconds Make Millions") showing a ~7% bounce rate increase per additional second of LCP above the 2.5s "Good" threshold.
Your site's LCP: → estimated after fixes.
These are estimates based on industry research — actual results vary
Your data stays in your browser — nothing is sent to our servers
Thanks for your feedback!
We'll use a cached audit if available, or offer to scan.
Industry-standard audits powered by Google Lighthouse.
Key metrics that affect user experience.
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
1.78 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
2.50 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
984 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.000
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
3.73 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
23.44 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
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
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
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.
Performance issues directly impact user engagement and conversion rates.
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.
Performance issues directly impact user engagement and conversion rates.
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.
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.
Performance issues directly impact user engagement and conversion rates.
| Request | Cache TTL | Transfer Size |
|---|---|---|
| influencermarketinghub.com/auth/agency-match-widget.ts | 0.0 ms | 236.4 KiB |
| snap.licdn.com/li.lms-analytics/insight.min.js | 86400.0 s | 18.7 KiB |
| cdn-cookieyes.com/assets/images/revisit.svg | 36000.0 s | 1.2 KiB |
| /collect?v=2&fmt=js&pid=57778&time=1776888829899&url=http... | 0.0 ms | 692 B |
| cdn-cookieyes.com/assets/images/close.svg | 36000.0 s | 796 B |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
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.
Performance issues directly impact user engagement and conversion rates.
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.
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.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /wp-content/themes/voice-child/style.min.css?ver=1775748732 | 43.0 KiB | 39.8 KiB |
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.
Performance issues directly impact user engagement and conversion rates.
| URL | Total CPU Time | Script Evaluation | Script Parse |
|---|---|---|---|
| /_/mss/boq-cloud-ai-ucs/_/js/k=boq-cloud-ai-ucs.UcsWidget... | 1.5 s | 735 ms | 698 ms |
| influencermarketinghub.com/ | 791 ms | 84 ms | 7.9 ms |
| Unattributable | 575 ms | 21 ms | 0.0 ms |
| cdn-cookieyes.com/client_data/89f7478d4d4eb884adf86a31/banner.js | 285 ms | 229 ms | 3.0 ms |
| www.googletagmanager.com/gtm.js?id=GTM-5ZGW3WVC | 233 ms | 190 ms | 33 ms |
| www.googletagmanager.com/gtag/js?id=G-86M2DZYZT6&cx=c>m=4e64k0 | 227 ms | 184 ms | 41 ms |
| www.googletagmanager.com/gtag/destination?id=AW-16598050890&cx=c>m=4e64k0 | 185 ms | 147 ms | 36 ms |
| influencermarketinghub.com/auth/agency-match-widget.ts | 163 ms | 79 ms | 80 ms |
| /wp-content/themes/voice-child/js/lib/jquery.min.js?ver=6... | 162 ms | 128 ms | 7.7 ms |
| influencermarketinghub.com/auth/tapon.min.js?ver=1776886831 | 67 ms | 52 ms | 9.2 ms |
| www.googletagmanager.com/gtag/js?id=AW-16598050890&cx=c>m=4e64k0 | 67 ms | 28 ms | 38 ms |
| snap.licdn.com/li.lms-analytics/insight.min.js | 60 ms | 50 ms | 5.9 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
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 2.0 s |
| Script Parsing & Compilation | 980 ms |
| Other | 694 ms |
| Style & Layout | 557 ms |
| Parse HTML & CSS | 114 ms |
| Rendering | 88 ms |
| Garbage Collection | 47 ms |
Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| influencermarketinghub.com/auth/agency-match-widget.ts | 236.3 KiB | 37.9 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.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| /_/mss/boq-cloud-ai-ucs/_/js/k=boq-cloud-ai-ucs.UcsWidget... | 2.2 MiB | 707.6 KiB |
| influencermarketinghub.com/auth/agency-match-widget.ts | 236.3 KiB | 168.8 KiB |
| www.googletagmanager.com/gtag/js?id=AW-16598050890&cx=c>m=4e64k0 | 143.5 KiB | 105.9 KiB |
| www.googletagmanager.com/gtag/js?id=G-86M2DZYZT6&cx=c>m=4e64k0 | 177.8 KiB | 67.4 KiB |
| www.googletagmanager.com/gtag/destination?id=AW-16598050890&cx=c>m=4e64k0 | 143.5 KiB | 64.8 KiB |
| www.googletagmanager.com/gtm.js?id=GTM-5ZGW3WVC | 152.4 KiB | 64.5 KiB |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
Influencer Marketing Platforms div.col-6 > a.imh-cat-links__item > div.imh-cat-links__image-wrap > img.imh-cat-links__image | /imaginary/convert?type=webp&url=https://influencermarket... |
Social Media Marketing Platforms div.col-6 > a.imh-cat-links__item > div.imh-cat-links__image-wrap > img.imh-cat-links__image | /imaginary/convert?type=webp&url=https://influencermarket... |
Instagram Sponsored Post Calculator div.col-12 > div.v3-tools-item > a.v3-tools-link > img | /imaginary/resize?height=320&type=webp&url=https://influe... |
TikTok Money Calculator div.col-12 > div.v3-tools-item > a.v3-tools-link > img | /imaginary/resize?height=320&type=webp&url=https://influe... |
YouTube Money Calculator div.col-12 > div.v3-tools-item > a.v3-tools-link > img | /imaginary/resize?height=320&type=webp&url=https://influe... |
eCommerce div.col-6 > a.imh-cat-links__item > div.imh-cat-links__image-wrap > img.imh-cat-links__image | /imaginary/convert?type=webp&url=https://influencermarket... |
Social Media div.col-6 > a.imh-cat-links__item > div.imh-cat-links__image-wrap > img.imh-cat-links__image | /imaginary/convert?type=webp&url=https://influencermarket... |
Influencer Marketing div.col-6 > a.imh-cat-links__item > div.imh-cat-links__image-wrap > img.imh-cat-links__image | /imaginary/convert?type=webp&url=https://influencermarket... |
Affiliate Marketing div.col-6 > a.imh-cat-links__item > div.imh-cat-links__image-wrap > img.imh-cat-links__image | /imaginary/convert?type=webp&url=https://influencermarket... |
div.container > div.row > div.col-12 > img div.container > div.row > div.col-12 > img | influencermarketinghub.com/wp-content/themes/voice-child/img/rh1.jpg |
kuli_logo_new div.wp-block-group > div.wp-block-group__inner-container > figure.w-100 > img.attachment-post-thumbnail | /imaginary/resize?width=192&type=webp&url=https://influen... |
Best Agentic Influencer Platforms for Brands and Agencies div.wp-block-group > div.wp-block-group__inner-container > figure.w-100 > img.attachment-post-thumbnail | /imaginary/resize?width=192&type=webp&url=https://influen... |
5 Influencer Marketing Tips Brands Use to Drive ROI div.wp-block-group > div.wp-block-group__inner-container > figure.w-100 > img.attachment-post-thumbnail | /imaginary/resize?width=192&type=webp&url=https://influen... |
Best AI Agents for Influencer Marketing in 2026 div.wp-block-group > div.wp-block-group__inner-container > figure.w-100 > img.attachment-post-thumbnail | /imaginary/resize?width=192&type=webp&url=https://influen... |
div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img | /imaginary/convert?type=webp&url=https://influencermarket... |
A Complete Social Media Content Creation Guide div.wp-block-group > div.wp-block-group__inner-container > figure.w-100 > img.attachment-post-thumbnail | /imaginary/resize?width=192&type=webp&url=https://influen... |
div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img | /imaginary/convert?type=webp&url=https://influencermarket... |
div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img | /imaginary/convert?type=webp&url=https://influencermarket... |
div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img | /imaginary/convert?type=webp&url=https://influencermarket... |
Sprout Social div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Upfluence div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
HypeAuditor div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Zorka.Agency div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img | /imaginary/convert?type=webp&url=https://influencermarket... |
div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img | /imaginary/convert?type=webp&url=https://influencermarket... |
Brandwatch Influencer Marketing Software div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Viral Nation div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Fresh Content Society div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Modash div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Creator.co div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Moburst div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
IQfluence div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Refersion div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Iron Roots div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
HireInfluence div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Disruptive Advertising div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Linqia div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
More information about the performance of your application. These numbers don't directly affect the Performance score.
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.
Using ARIA attributes in roles where they are prohibited can mean that important information is not communicated to users of assistive technologies. Learn more about prohibited ARIA roles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Search body.home > div#vce-main > header#header > i#searchWidgetTriggerMobile |
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.
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
INFLUENCER MARKETING div.wp-block-group > div.wp-block-group__inner-container > div.wp-block-post-terms > a |
INFLUENCER MARKETING div.wp-block-group > div.wp-block-group__inner-container > div.taxonomy-category > a |
SOCIAL MEDIA div.wp-block-group > div.wp-block-group__inner-container > div.wp-block-post-terms > a |
ECOMMERCE div.wp-block-group > div.wp-block-group__inner-container > div.wp-block-post-terms > a |
INFLUENCER MARKETING div.wp-block-group > div.wp-block-group__inner-container > div.taxonomy-category > a |
INFLUENCER MARKETING div.wp-block-group > div.wp-block-group__inner-container > div.taxonomy-category > a |
INFLUENCER MARKETING div.wp-block-group > div.wp-block-group__inner-container > div.taxonomy-category > a |
DIGITAL MARKETING div.wp-block-group > div.wp-block-group__inner-container > div.wp-block-post-terms > a |
INFLUENCER MARKETING div.wp-block-group > div.wp-block-group__inner-container > div.taxonomy-category > a |
Mar 19, 2026 div.wp-block-group > div.wp-block-group__inner-container > div.v3-postlist-date > time |
INFLUENCER MARKETING div.wp-block-group > div.wp-block-group__inner-container > div.taxonomy-category > a |
Mar 19, 2026 div.wp-block-group > div.wp-block-group__inner-container > div.v3-postlist-date > time |
INFLUENCER MARKETING PLATFORMS div.wp-block-group > div.wp-block-group__inner-container > div.wp-block-post-terms > a |
Mar 19, 2026 div.wp-block-group > div.wp-block-group__inner-container > div.v3-postlist-date > time |
SOCIAL MEDIA div.wp-block-group > div.wp-block-group__inner-container > div.wp-block-post-terms > a |
Mar 19, 2026 div.wp-block-group > div.wp-block-group__inner-container > div.v3-postlist-date > time |
INFLUENCER MARKETING div.wp-block-group > div.wp-block-group__inner-container > div.taxonomy-category > a |
Mar 19, 2026 div.wp-block-group > div.wp-block-group__inner-container > div.v3-postlist-date > time |
NEWSLETTER div.container > div.row > div.col-12 > span.d-block |
div.row > div.col-12 > div.clear > input#mc-embedded-subscribe div.row > div.col-12 > div.clear > input#mc-embedded-subscribe |
These are opportunities to improve the legibility of your content.
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.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
BY SOCIAL NETWORK div.wp-bootstrap-blocks-container > div.wp-bootstrap-blocks-row > div.col-12 > h4#h-by-social-network |
Agencies div.col-12 > div.wp-block-group > div.wp-block-group__inner-container > h4#h-agencies |
AS SEEN IN div.container > div.wp-block-group > div.wp-block-group__inner-container > h5#h-as-seen-in |
These are opportunities to improve keyboard navigation in your application.
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These items highlight common accessibility best practices.
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| AttributionReporting |
Source maps translate minified code to the original source code. This helps developers debug in production. In addition, Lighthouse is able to provide further insights. Consider deploying source maps to take advantage of these benefits. Learn more about source maps.
Performance issues directly impact user engagement and conversion rates.
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.
Industry-standard audits powered by Google Lighthouse. — Desktop
Key metrics that affect user experience. — Desktop
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
534 ms
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
735 ms
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
60 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.000
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
1.18 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
4.69 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
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
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
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.
Performance issues directly impact user engagement and conversion rates.
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.
Performance issues directly impact user engagement and conversion rates.
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.
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.
Performance issues directly impact user engagement and conversion rates.
| Request | Cache TTL | Transfer Size |
|---|---|---|
| influencermarketinghub.com/auth/agency-match-widget.ts | 0.0 ms | 236.4 KiB |
| snap.licdn.com/li.lms-analytics/insight.min.js | 86400.0 s | 18.7 KiB |
| /collect?v=2&fmt=js&pid=57778&time=1776888849146&url=http... | 0.0 ms | 694 B |
| cdn-cookieyes.com/assets/images/revisit.svg | 36000.0 s | 1.2 KiB |
| cdn-cookieyes.com/assets/images/close.svg | 36000.0 s | 796 B |
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
Influencer Marketing Platforms div.col-6 > a.imh-cat-links__item > div.imh-cat-links__image-wrap > img.imh-cat-links__image | /imaginary/convert?type=webp&url=https://influencermarket... | 57.7 KiB | 54.9 KiB |
Social Media Marketing Platforms div.col-6 > a.imh-cat-links__item > div.imh-cat-links__image-wrap > img.imh-cat-links__image | /imaginary/convert?type=webp&url=https://influencermarket... | 17.5 KiB | 15.9 KiB |
ul.wp-block-post-template > li.wp-block-post > div.wp-block-cover > img.wp-block-cover__image-background ul.wp-block-post-template > li.wp-block-post > div.wp-block-cover > img.wp-block-cover__image-background | /imaginary/resize?width=1200&type=webp&url=https://influe... | 31.3 KiB | 15.8 KiB |
Instagram Sponsored Post Calculator div.col-12 > div.v3-tools-item > a.v3-tools-link > img | /imaginary/resize?height=320&type=webp&url=https://influe... | 11.6 KiB | 6.7 KiB |
YouTube Money Calculator div.col-12 > div.v3-tools-item > a.v3-tools-link > img | /imaginary/resize?height=320&type=webp&url=https://influe... | 10.1 KiB | 5.9 KiB |
TikTok Money Calculator div.col-12 > div.v3-tools-item > a.v3-tools-link > img | /imaginary/resize?height=320&type=webp&url=https://influe... | 9.5 KiB | 5.5 KiB |
Modash div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... | 5.7 KiB | 5.2 KiB |
Zorka.Agency div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... | 5.4 KiB | 5.0 KiB |
Affiliate Marketing div.col-6 > a.imh-cat-links__item > div.imh-cat-links__image-wrap > img.imh-cat-links__image | /imaginary/convert?type=webp&url=https://influencermarket... | 6.3 KiB | 4.8 KiB |
Upfluence div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... | 5.1 KiB | 4.8 KiB |
Influencer Marketing div.col-6 > a.imh-cat-links__item > div.imh-cat-links__image-wrap > img.imh-cat-links__image | /imaginary/convert?type=webp&url=https://influencermarket... | 6.0 KiB | 4.7 KiB |
eCommerce div.col-6 > a.imh-cat-links__item > div.imh-cat-links__image-wrap > img.imh-cat-links__image | /imaginary/convert?type=webp&url=https://influencermarket... | 5.8 KiB | 4.5 KiB |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
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.
Performance issues directly impact user engagement and conversion rates.
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.
Performance issues directly impact user engagement and conversion rates.
Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| influencermarketinghub.com/auth/agency-match-widget.ts | 236.3 KiB | 37.9 KiB |
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.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /wp-content/themes/voice-child/style.min.css?ver=1775748732 | 43.0 KiB | 41.1 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.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| /_/mss/boq-cloud-ai-ucs/_/js/k=boq-cloud-ai-ucs.UcsWidget... | 2.2 MiB | 707.6 KiB |
| influencermarketinghub.com/auth/agency-match-widget.ts | 236.3 KiB | 168.1 KiB |
| www.googletagmanager.com/gtag/js?id=AW-16598050890&cx=c>m=4e64k0 | 143.5 KiB | 105.9 KiB |
| accounts.google.com/gsi/client | 95.6 KiB | 72.0 KiB |
| www.googletagmanager.com/gtag/js?id=G-86M2DZYZT6&cx=c>m=4e64k0 | 177.8 KiB | 67.3 KiB |
| www.googletagmanager.com/gtag/destination?id=AW-16598050890&cx=c>m=4e64k0 | 143.5 KiB | 63.9 KiB |
| www.googletagmanager.com/gtm.js?id=GTM-5ZGW3WVC | 152.4 KiB | 63.9 KiB |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
Influencer Marketing Platforms div.col-6 > a.imh-cat-links__item > div.imh-cat-links__image-wrap > img.imh-cat-links__image | /imaginary/convert?type=webp&url=https://influencermarket... |
Social Media Marketing Platforms div.col-6 > a.imh-cat-links__item > div.imh-cat-links__image-wrap > img.imh-cat-links__image | /imaginary/convert?type=webp&url=https://influencermarket... |
Instagram Sponsored Post Calculator div.col-12 > div.v3-tools-item > a.v3-tools-link > img | /imaginary/resize?height=320&type=webp&url=https://influe... |
TikTok Money Calculator div.col-12 > div.v3-tools-item > a.v3-tools-link > img | /imaginary/resize?height=320&type=webp&url=https://influe... |
YouTube Money Calculator div.col-12 > div.v3-tools-item > a.v3-tools-link > img | /imaginary/resize?height=320&type=webp&url=https://influe... |
eCommerce div.col-6 > a.imh-cat-links__item > div.imh-cat-links__image-wrap > img.imh-cat-links__image | /imaginary/convert?type=webp&url=https://influencermarket... |
Social Media div.col-6 > a.imh-cat-links__item > div.imh-cat-links__image-wrap > img.imh-cat-links__image | /imaginary/convert?type=webp&url=https://influencermarket... |
Influencer Marketing div.col-6 > a.imh-cat-links__item > div.imh-cat-links__image-wrap > img.imh-cat-links__image | /imaginary/convert?type=webp&url=https://influencermarket... |
Affiliate Marketing div.col-6 > a.imh-cat-links__item > div.imh-cat-links__image-wrap > img.imh-cat-links__image | /imaginary/convert?type=webp&url=https://influencermarket... |
div.container > div.row > div.col-12 > img div.container > div.row > div.col-12 > img | influencermarketinghub.com/wp-content/themes/voice-child/img/rh1.jpg |
kuli_logo_new div.wp-block-group > div.wp-block-group__inner-container > figure.w-100 > img.attachment-post-thumbnail | /imaginary/resize?width=192&type=webp&url=https://influen... |
Best Agentic Influencer Platforms for Brands and Agencies div.wp-block-group > div.wp-block-group__inner-container > figure.w-100 > img.attachment-post-thumbnail | /imaginary/resize?width=192&type=webp&url=https://influen... |
5 Influencer Marketing Tips Brands Use to Drive ROI div.wp-block-group > div.wp-block-group__inner-container > figure.w-100 > img.attachment-post-thumbnail | /imaginary/resize?width=192&type=webp&url=https://influen... |
Best AI Agents for Influencer Marketing in 2026 div.wp-block-group > div.wp-block-group__inner-container > figure.w-100 > img.attachment-post-thumbnail | /imaginary/resize?width=192&type=webp&url=https://influen... |
div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img | /imaginary/convert?type=webp&url=https://influencermarket... |
A Complete Social Media Content Creation Guide div.wp-block-group > div.wp-block-group__inner-container > figure.w-100 > img.attachment-post-thumbnail | /imaginary/resize?width=192&type=webp&url=https://influen... |
div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img | /imaginary/convert?type=webp&url=https://influencermarket... |
div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img | /imaginary/convert?type=webp&url=https://influencermarket... |
div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img | /imaginary/convert?type=webp&url=https://influencermarket... |
Sprout Social div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Upfluence div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
HypeAuditor div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Zorka.Agency div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img | /imaginary/convert?type=webp&url=https://influencermarket... |
div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img div.wp-bootstrap-blocks-row > div.col-3 > figure.wp-block-image > img | /imaginary/convert?type=webp&url=https://influencermarket... |
Brandwatch Influencer Marketing Software div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Viral Nation div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Fresh Content Society div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Modash div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Creator.co div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Moburst div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
IQfluence div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Refersion div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Iron Roots div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
HireInfluence div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Disruptive Advertising div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
Linqia div.row > div.col-5 > a.v3-trend-link > img | /imaginary/resize?height=48&type=webp&url=https://influen... |
More information about the performance of your application. These numbers don't directly affect the Performance score.
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.
Using ARIA attributes in roles where they are prohibited can mean that important information is not communicated to users of assistive technologies. Learn more about prohibited ARIA roles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Search nav#site-navigation > ul#vce_main_navigation_menu > li.search_area_v2 > i#searchWidgetTrigger |
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.
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
List Your Agency nav#site-navigation > ul#vce_main_navigation_menu > li.menu-item > a.primary-button |
List Your Tool nav#site-navigation > ul#vce_main_navigation_menu > li.menu-item > a.primary-button |
INFLUENCER MARKETING div.wp-block-group > div.wp-block-group__inner-container > div.wp-block-post-terms > a |
INFLUENCER MARKETING div.wp-block-group > div.wp-block-group__inner-container > div.taxonomy-category > a |
SOCIAL MEDIA div.wp-block-group > div.wp-block-group__inner-container > div.wp-block-post-terms > a |
ECOMMERCE div.wp-block-group > div.wp-block-group__inner-container > div.wp-block-post-terms > a |
INFLUENCER MARKETING div.wp-block-group > div.wp-block-group__inner-container > div.taxonomy-category > a |
INFLUENCER MARKETING div.wp-block-group > div.wp-block-group__inner-container > div.taxonomy-category > a |
INFLUENCER MARKETING div.wp-block-group > div.wp-block-group__inner-container > div.taxonomy-category > a |
DIGITAL MARKETING div.wp-block-group > div.wp-block-group__inner-container > div.wp-block-post-terms > a |
INFLUENCER MARKETING div.wp-block-group > div.wp-block-group__inner-container > div.taxonomy-category > a |
Mar 19, 2026 div.wp-block-group > div.wp-block-group__inner-container > div.v3-postlist-date > time |
INFLUENCER MARKETING div.wp-block-group > div.wp-block-group__inner-container > div.taxonomy-category > a |
Mar 19, 2026 div.wp-block-group > div.wp-block-group__inner-container > div.v3-postlist-date > time |
INFLUENCER MARKETING PLATFORMS div.wp-block-group > div.wp-block-group__inner-container > div.wp-block-post-terms > a |
Mar 19, 2026 div.wp-block-group > div.wp-block-group__inner-container > div.v3-postlist-date > time |
SOCIAL MEDIA div.wp-block-group > div.wp-block-group__inner-container > div.wp-block-post-terms > a |
Mar 19, 2026 div.wp-block-group > div.wp-block-group__inner-container > div.v3-postlist-date > time |
INFLUENCER MARKETING div.wp-block-group > div.wp-block-group__inner-container > div.taxonomy-category > a |
Mar 19, 2026 div.wp-block-group > div.wp-block-group__inner-container > div.v3-postlist-date > time |
NEWSLETTER div.container > div.row > div.col-12 > span.d-block |
div.row > div.col-12 > div.clear > input#mc-embedded-subscribe div.row > div.col-12 > div.clear > input#mc-embedded-subscribe |
These are opportunities to improve the legibility of your content.
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.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
BY SOCIAL NETWORK div.wp-bootstrap-blocks-container > div.wp-bootstrap-blocks-row > div.col-12 > h4#h-by-social-network |
Agencies div.col-12 > div.wp-block-group > div.wp-block-group__inner-container > h4#h-agencies |
AS SEEN IN div.container > div.wp-block-group > div.wp-block-group__inner-container > h5#h-as-seen-in |
These are opportunities to improve keyboard navigation in your application.
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These items highlight common accessibility best practices.
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| AttributionReporting |
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
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
Not signed in with the identity provider. |
Source maps translate minified code to the original source code. This helps developers debug in production. In addition, Lighthouse is able to provide further insights. Consider deploying source maps to take advantage of these benefits. Learn more about source maps.
Performance issues directly impact user engagement and conversion rates.
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.
Send Feedback