Skip to content
https://calendly.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.

38

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.

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:Top function call valueType:source-location] map[granularity:1 key:reflowTime label:Total reflow time valueType:ms]]
items: [map[reflowTime:302.261 source:map[column:7484 line:1 type:source-location url:https://marketing-assets.calendly.com/_next/static/chunks/0wcez47q7d~ix.js urlProvider:network]]]
headings: [map[key:source label:Source valueType:source-location] map[granularity:1 key:reflowTime label:Total reflow time valueType:ms]]
items: [map[reflowTime:162.914 source:map[type:text value:[unattributed]]] map[reflowTime:139.761 source:map[column:47591 line:7971 type:source-location url:https://marketing-assets.calendly.com/_next/static/chunks/0oitq0d2vf9cn.js urlProvider:network]] map[reflowTime:129.373 source:map[column:3529 line:6500 type:source-location url:https://marketing-assets.calendly.com/_next/static/chunks/0oitq0d2vf9cn.js urlProvider:network]] map[reflowTime:33.127 source:map[column:159724 line:3410 type:source-location url:https://marketing-assets.calendly.com/_next/static/chunks/0oitq0d2vf9cn.js urlProvider:network]] map[reflowTime:85.682 source:map[column:3377 line:6614 type:source-location url:https://marketing-assets.calendly.com/_next/static/chunks/0oitq0d2vf9cn.js urlProvider:network]] map[reflowTime:72.67 source:map[column:376 line:855 type:source-location url:https://www.googletagmanager.com/gtm.js?id=GTM-W3RGHP8 urlProvider:network]] map[reflowTime:79.473 source:map[column:283933 line:6 type:source-location url:https://cdn.cookielaw.org/scripttemplates/202508.2.0/otBannerSdk.js urlProvider:network]] map[reflowTime:130.135 source:map[column:85980 line:0 type:source-location url:https://js.intercomcdn.com/frame-modern.b7b766ac.js urlProvider:network]] map[reflowTime:0.159 source:map[column:86756 line:0 type:source-location url:https://js.intercomcdn.com/frame-modern.b7b766ac.js urlProvider:network]]]

Each subpart has specific improvement strategies. Ideally, most of the LCP time should be spent on loading the resources, not within delays.

Why this matters

Performance issues directly impact user engagement and conversion rates.

headings: [map[key:label label:Subpart valueType:text] map[key:duration label:Duration valueType:ms]]
items: [map[duration:338.841 label:Time to first byte subpart:timeToFirstByte] map[duration:4548.397 label:Element render delay subpart:elementRenderDelay]]
lhId: page-0-DIV
nodeLabel: We use cookies and similar technologies to improve and personalize your experie…
path: 1,HTML,1,BODY,46,DIV,1,DIV,0,DIV,0,DIV,0,DIV,1,DIV,0,DIV
selector: div.ot-sdk-row > div#onetrust-group-container > div#onetrust-policy > div#onetrust-policy-text
snippet: <div id="onetrust-policy-text">

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
value: no origins were preconnected
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.

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

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.

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

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.

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
Style & Layout2.7 s
Script Evaluation2.0 s
Other1.5 s
Parse HTML & CSS420 ms
Script Parsing & Compilation342 ms
Rendering307 ms
Garbage Collection94 ms

Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failure reasonFailure type
The page has an unload handler in the main frame.Actionable
Pages with WebSocket cannot enter back/forward cache.Pending browser support

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.

Estimated savings: 0.0 ms 4.0 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.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Estimated savings: 0.0 ms 74.6 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
Google suite div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/x2WxpmYJVcwMjBJy0Bb1u/1d05b8113da8d7cefe0e9...
Typeform integration div.ContentfulIconTiles-atoms__TileWrapper-sc-212d81be-0 > a.ContentfulIconTiles-atoms__IconTileButtonLinkWrapper-sc-212d81be-1 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/3YVXIhGtUTAzHkrMdGeEWh/65b2902b498aab7bd56e...
Microsoft Teams integration div.ContentfulIconTiles-atoms__TileWrapper-sc-212d81be-0 > a.ContentfulIconTiles-atoms__IconTileButtonLinkWrapper-sc-212d81be-1 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/2rhQcGrSRD5qeBzfsUresc/d2ed5280c9c0279be9d9...
Microsoft suite div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/7yrXYudS3YKuKWtyU5Bj81/10d99f35d1f31142ab4c...
Webex integration div.ContentfulIconTiles-atoms__TileWrapper-sc-212d81be-0 > a.ContentfulIconTiles-atoms__IconTileButtonLinkWrapper-sc-212d81be-1 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/4DaLXMiJ2kwAv3qpPblkwG/3e2dcf1bf1a4b80858cd...
Calendly logo a.Link__LinkBase-sc-fa64cff6-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
marketing-assets.calendly.com/media/logo.svg
div.rfm-initial-child-container > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0 div.rfm-initial-child-container > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/Fk2s4fCN5ubFpjQpZf8ef/90cb997106a745d0c6d3e...
div.rfm-marquee > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0 div.rfm-marquee > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/Fk2s4fCN5ubFpjQpZf8ef/90cb997106a745d0c6d3e...
div.intercom-lightweight-app > div.intercom-lightweight-app-launcher > div.intercom-lightweight-app-launcher-icon > img.intercom-lightweight-app-launcher-custom-icon-open div.intercom-lightweight-app > div.intercom-lightweight-app-launcher > div.intercom-lightweight-app-launcher-icon > img.intercom-lightweight-app-launcher-custom-icon-open
/i/o/exkcomf1/871688/712269fb17afa81b9364eb13a4aa/6a28413...
div.rfm-initial-child-container > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0 div.rfm-initial-child-container > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/6fo1ntHspDIwlAN45IgxRU/fbba98755d036e6d8763...
div.rfm-marquee > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0 div.rfm-marquee > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/6fo1ntHspDIwlAN45IgxRU/fbba98755d036e6d8763...
div.rfm-initial-child-container > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0 div.rfm-initial-child-container > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/7xVuRmZcIPeKLv5QaP2IFS/fe2200bf305c145f19a9...
div.rfm-marquee > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0 div.rfm-marquee > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/7xVuRmZcIPeKLv5QaP2IFS/fe2200bf305c145f19a9...
Dropbox div.rfm-initial-child-container > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/bOnLOncEyDdb8izczJggp/b98f4d8da30cfff0a87e8...
Dropbox div.rfm-marquee > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/bOnLOncEyDdb8izczJggp/b98f4d8da30cfff0a87e8...
Compass Logo div.rfm-initial-child-container > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/6PFPRWMRMxRXthyXYcDRiR/ee7cc3f3ca0ed78752db...
Compass Logo div.rfm-marquee > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/6PFPRWMRMxRXthyXYcDRiR/ee7cc3f3ca0ed78752db...
div.rfm-initial-child-container > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0 div.rfm-initial-child-container > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/4AUQ47IN6ZBtXtWXt65L3D/24dae32ff49baaf8feec...
div.rfm-marquee > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0 div.rfm-marquee > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/4AUQ47IN6ZBtXtWXt65L3D/24dae32ff49baaf8feec...
L'Oreal Logo div.rfm-initial-child-container > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/42drnxHfXrNOGKnVE9iA3r/a7f1bea3f67ca614e359...
L'Oreal Logo div.rfm-marquee > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/42drnxHfXrNOGKnVE9iA3r/a7f1bea3f67ca614e359...
Gong div.rfm-initial-child-container > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/k5u1aoWgLdVtFfc4tsyg3/cae65a31428205e2b46b2...
Gong div.rfm-marquee > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/k5u1aoWgLdVtFfc4tsyg3/cae65a31428205e2b46b2...
Zoom integration div.ContentfulIconTiles-atoms__TileWrapper-sc-212d81be-0 > a.ContentfulIconTiles-atoms__IconTileButtonLinkWrapper-sc-212d81be-1 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/64o3ZzxmDZ2RvV36K0PCwc/b8b2993bc4f37beb3eae...
Google Calendar integration div.ContentfulIconTiles-atoms__TileWrapper-sc-212d81be-0 > a.ContentfulIconTiles-atoms__IconTileButtonLinkWrapper-sc-212d81be-1 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/6W5mnZM4eNVK6Y8cBCnTu5/a0d70a3a38423e2b206e...
Gmail integration div.ContentfulIconTiles-atoms__TileWrapper-sc-212d81be-0 > a.ContentfulIconTiles-atoms__IconTileButtonLinkWrapper-sc-212d81be-1 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/3x97SWL0ydKgcqT412HGr8/ed9ea1d8dea332dd74b1...
Greenhouse integration div.ContentfulIconTiles-atoms__TileWrapper-sc-212d81be-0 > a.ContentfulIconTiles-atoms__IconTileButtonLinkWrapper-sc-212d81be-1 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/3L8hrM2H4gJLD7s2UFhhxE/75734eb6c87362ba5386...
LinkedIn integration div.ContentfulIconTiles-atoms__TileWrapper-sc-212d81be-0 > a.ContentfulIconTiles-atoms__IconTileButtonLinkWrapper-sc-212d81be-1 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/nirfrq5tMDzXegZJxZHYr/626c4f558a197d841e926...
Stripe integration div.ContentfulIconTiles-atoms__TileWrapper-sc-212d81be-0 > a.ContentfulIconTiles-atoms__IconTileButtonLinkWrapper-sc-212d81be-1 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/68QvXpmECJZjUTvmk1Qbxk/7c2198e75bf4761ccf66...
Salesforce integration div.ContentfulIconTiles-atoms__TileWrapper-sc-212d81be-0 > a.ContentfulIconTiles-atoms__IconTileButtonLinkWrapper-sc-212d81be-1 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/6OTuIytCbtNByiPPLwTDLD/9250192af735c5ccf3e6...
Google logo div.Flex-sc-61e9caf1-0 > button.ButtonBase-sc-3564e05a-0 > span.Button___StyledSpan-sc-f0ce2109-0 > img
calendly.com/media/googleLogo.svg
Lyft Logo div.rfm-initial-child-container > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/Y595RQBDR1fW5blQZfd9l/b9f3e2557c598b1ea51bb...
Lyft Logo div.rfm-marquee > div.rfm-child > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/Y595RQBDR1fW5blQZfd9l/b9f3e2557c598b1ea51bb...
HubSpot integration div.ContentfulIconTiles-atoms__TileWrapper-sc-212d81be-0 > a.ContentfulIconTiles-atoms__IconTileButtonLinkWrapper-sc-212d81be-1 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/2APzJ2NNOwzzKC0mZam9mB/3158e0780a9db488ff24...
Slack integration div.ContentfulIconTiles-atoms__TileWrapper-sc-212d81be-0 > a.ContentfulIconTiles-atoms__IconTileButtonLinkWrapper-sc-212d81be-1 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/4UQZOyPUNAjKf3x7tV7WZh/874072c0fdc4485bf305...
Outlook integration div.ContentfulIconTiles-atoms__TileWrapper-sc-212d81be-0 > a.ContentfulIconTiles-atoms__IconTileButtonLinkWrapper-sc-212d81be-1 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/7bQs7qA7sp83HJuE7EUETv/ac34c04b2206d7e049f3...
Chrome integration div.ContentfulIconTiles-atoms__TileWrapper-sc-212d81be-0 > a.ContentfulIconTiles-atoms__IconTileButtonLinkWrapper-sc-212d81be-1 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/1iXaOfSTG4LH14hl3jhgLV/9c262e7842e1e78a9e59...
Zapier integration div.ContentfulIconTiles-atoms__TileWrapper-sc-212d81be-0 > a.ContentfulIconTiles-atoms__IconTileButtonLinkWrapper-sc-212d81be-1 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/42r0sVudnFRBVKsZH5MKRv/e71cb6443dc2ffe75a4f...
Intercom integration div.ContentfulIconTiles-atoms__TileWrapper-sc-212d81be-0 > a.ContentfulIconTiles-atoms__IconTileButtonLinkWrapper-sc-212d81be-1 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/5iPdwT125pfQPNafr27mny/e866d175ee0169c23f90...
ActiveCampaign integration div.ContentfulIconTiles-atoms__TileWrapper-sc-212d81be-0 > a.ContentfulIconTiles-atoms__IconTileButtonLinkWrapper-sc-212d81be-1 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/5f4urpcDfUzxVFsvqHeuC/24ce8cc6a9e5269f5f749...
PayPal integration div.ContentfulIconTiles-atoms__TileWrapper-sc-212d81be-0 > a.ContentfulIconTiles-atoms__IconTileButtonLinkWrapper-sc-212d81be-1 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
/k0lk9kiuza3o/263kzYvoG2EGkeRpsrnkrA/90dd1ddda05b6fe9a4e5...
169%-image div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
169%-image div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
160%-image div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
160%-image div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
20%-image div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
20%-image div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
Muck Rack Company Logo-image div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
Muck Rack Company Logo-image div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
26%-image div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
26%-image div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0
Security-SOC div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > img.BasicImage-sc-6aa73a77-0

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

Layout shift culprits
Document request latency
Optimize DOM size
Font display
Improve image delivery
Modern HTTP
Optimize viewport for mobile
Minify JavaScript
User Timing marks and measures 1 user timing
Avoid long main-thread tasks 20 long tasks found
Network Requests
Network Round Trip Times 70 ms
Server Backend Latencies 130 ms
Tasks
Diagnostics
Metrics
Screenshot Thumbnails
Final Screenshot
Script Treemap Data
Resources Summary
Avoid multiple page redirects
Initial server response time was short Root document took 320 ms
INP breakdown
LCP request discovery
Avoid non-composited animations
Avoid large layout shifts
92

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

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.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
Availability Connect existing calendar Google Google calendars Microsoft Outlo… div.Flex-sc-61e9caf1-0 > div.Wrapper-sc-a490ef01-0 > div.Flex-sc-61e9caf1-0 > span
Create Event types New event type Search event types... Fatima Sy (you) Follow-… div.Flex-sc-61e9caf1-0 > div.Wrapper-sc-a490ef01-0 > div.Flex-sc-61e9caf1-0 > span

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.

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
Share your booking page div.HomepageAnimatedHero__AnimatedImageWrapper-sc-bd3e3dd9-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > h4.Heading-sc-d3a6f8a6-0
Google suite div.Wrapper-sc-a490ef01-0 > a.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > h4.Heading-sc-d3a6f8a6-0
Free div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > h4.text-main-800n
Starts at div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > h6.Heading-sc-d3a6f8a6-0
Product div.Flex-sc-61e9caf1-0 > div.Grid-sc-bcbe7726-0 > div.Flex-sc-61e9caf1-0 > h5.Heading-sc-d3a6f8a6-0

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
Open Product submenu ul.Flex-sc-61e9caf1-0 > li.Header-atoms__HeaderItem-sc-c3294f8f-4 > a#header-menu-item-0 > button.Header-atoms__HeaderDropdownButton-sc-c3294f8f-2
Open Solutions submenu ul.Flex-sc-61e9caf1-0 > li.Header-atoms__HeaderItem-sc-c3294f8f-4 > a#header-menu-item-1 > button.Header-atoms__HeaderDropdownButton-sc-c3294f8f-2
Open Resources submenu ul.Flex-sc-61e9caf1-0 > li.Header-atoms__HeaderItem-sc-c3294f8f-4 > a#header-menu-item-2 > button.Header-atoms__HeaderDropdownButton-sc-c3294f8f-2

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
Product div.Header-atoms__HeaderWrapper-sc-c3294f8f-5 > ul.Flex-sc-61e9caf1-0 > li.Header-atoms__HeaderItem-sc-c3294f8f-4 > a#header-menu-item-0
Solutions div.Header-atoms__HeaderWrapper-sc-c3294f8f-5 > ul.Flex-sc-61e9caf1-0 > li.Header-atoms__HeaderItem-sc-c3294f8f-4 > a#header-menu-item-1
Resources div.Header-atoms__HeaderWrapper-sc-c3294f8f-5 > ul.Flex-sc-61e9caf1-0 > li.Header-atoms__HeaderItem-sc-c3294f8f-4 > a#header-menu-item-2
Pricing div.Header-atoms__HeaderWrapper-sc-c3294f8f-5 > ul.Flex-sc-61e9caf1-0 > li.Header-atoms__HeaderItem-sc-c3294f8f-4 > a#header-menu-item-3
App Store div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > a.ButtonBase-sc-3564e05a-0
Chrome extension div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > a.ButtonBase-sc-3564e05a-0
Edge extension div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > a.ButtonBase-sc-3564e05a-0
Firefox extension div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > a.ButtonBase-sc-3564e05a-0
Safari extension div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > a.ButtonBase-sc-3564e05a-0
Outlook add-in div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > div.Flex-sc-61e9caf1-0 > a.ButtonBase-sc-3564e05a-0
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-*]` attributes match their roles
`[aria-hidden="true"]` is not present on the document `<body>`
`[role]`s have all required `[aria-*]` attributes
`[role]` values are valid
`[aria-*]` attributes have valid values
`[aria-*]` attributes are valid and not misspelled
Buttons have an accessible name
Image elements have `[alt]` attributes
`[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
Elements with `role="dialog"` or `role="alertdialog"` have accessible names.
`[aria-hidden="true"]` elements do not contain focusable descendents
Background and foreground colors have a sufficient contrast ratio
Document has a `<title>` element
`<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
Lists contain only `<li>` elements and script supporting elements (`<script>` and `<template>`).
List items (`<li>`) are contained within `<ul>`, `<ol>` or `<menu>` parent elements
No element has a `[tabindex]` value greater than 0
Document has a main landmark.
Deprecated ARIA roles were not used
Identical links have the same purpose.
`[accesskey]` values are unique
ARIA input fields have accessible names
ARIA `meter` elements have accessible names
ARIA `progressbar` elements have accessible names
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
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
ARIA IDs are unique
No form fields have multiple labels
`<frame>` or `<iframe>` elements have a title
`<html>` element has an `[xml:lang]` attribute with the same base language as the `[lang]` attribute.
Input buttons have discernible text.
`<input type="image">` elements have `[alt]` text
Form elements have associated labels
The document does not use `<meta http-equiv="refresh">`
`<object>` elements have alternate text
Select elements have associated label elements.
Skip links are focusable.
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
`<video>` elements contain a `<track>` element with `[kind="captions"]`
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
Unload event listeners are deprecated and will be removed.

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
Uncaught Error: Minified React error #418; visit https://react.dev/errors/418?args[]=HTML&args[]= for the full message or use the non-minified dev environment for full errors and additional helpful warnings.
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
Mitigate clickjacking with XFO or CSP
Mitigate DOM-based XSS with Trusted Types
Redirects HTTP traffic to HTTPS
Use a strong HSTS policy
Ensure proper origin isolation with COOP
Detected JavaScript libraries
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
calendly.com/securityLearn more

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