Skip to content
https://sketchup.com

Lighthouse Mobile

· 0 checks — Mobile 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.

25

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 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.

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.111024] map[node:map[boundingRect:map[bottom:17243 height:17172 left:0 right:412 top:71 width:412] lhId:page-1-DIV nodeLabel:Bring your vision to life Effortlessly turn creative ideas into buildable 3D m… path:1,HTML,1,BODY,0,DIV,0,DIV,3,MAIN,1,DIV selector:div#___gatsby > div#gatsby-focus-wrapper > main.luna-layout > div snippet:<div> type:node] score:0.111024]]

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.

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:72.65 source:map[column:138889 line:2 type:source-location url:https://sketchup.trimble.com/framework-9d9a5d6205d7292f5844.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:53.63 source:map[column:349112 line:1 type:source-location url:https://sketchup.trimble.com/18b1f3c0-ceda850e2a7476ec3b50.js urlProvider:network]] map[reflowTime:2.049 source:map[column:267275 line:1 type:source-location url:https://sketchup.trimble.com/8ed4083672828cac697f83e269c9be724b54eb41-fa12e783c80df9e70f09.js urlProvider:network]] map[reflowTime:3.239 source:map[column:361738 line:1 type:source-location url:https://sketchup.trimble.com/18b1f3c0-ceda850e2a7476ec3b50.js urlProvider:network]] map[reflowTime:17.801 source:map[column:341289 line:1 type:source-location url:https://sketchup.trimble.com/18b1f3c0-ceda850e2a7476ec3b50.js urlProvider:network]] map[reflowTime:0.152 source:map[type:text value:[unattributed]]] map[reflowTime:1.22 source:map[column:582726 line:1 type:source-location url:https://sketchup.trimble.com/18b1f3c0-ceda850e2a7476ec3b50.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:367.501 label:Time to first byte subpart:timeToFirstByte] map[duration:1217.75 label:Resource load delay subpart:resourceLoadDelay] map[duration:24.15 label:Resource load duration subpart:resourceLoadDuration] map[duration:975.581 label:Element render delay subpart:elementRenderDelay]]
lhId: page-0-IMG
nodeLabel: SketchUp logo illuminated for cyber week
path: 1,HTML,1,BODY,0,DIV,0,DIV,3,MAIN,1,DIV,0,SECTION,0,DIV,1,DIV,0,DIV,0,DIV,0,DIV,0,PICTURE,8,IMG
selector: div.t2-hero-lead__box__inner > div.t2-hero-lead__background > picture.ter-focused-image-container > img.ter-focused-image
snippet: <img loading="lazy" src="https://images.ctfassets.net/5qimfmsew7zl/CLeItCuQzyar0Ix1BPD8b/7cb6eb778c…" alt="SketchUp logo illuminated for cyber week" class="ter-focused-image focused-image-sketchup-arch_homepage-bring-your-vision-t…" style="opacity: 1; min-height: 100%; min-width: 100%; position: absolute;" data-focus-x="0" data-focus-y="0">

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: SketchUp logo illuminated for cyber week
path: 1,HTML,1,BODY,0,DIV,0,DIV,3,MAIN,1,DIV,0,SECTION,0,DIV,1,DIV,0,DIV,0,DIV,0,DIV,0,PICTURE,8,IMG
selector: div.t2-hero-lead__box__inner > div.t2-hero-lead__background > picture.ter-focused-image-container > img.ter-focused-image
snippet: <img loading="lazy" src="https://images.ctfassets.net/5qimfmsew7zl/CLeItCuQzyar0Ix1BPD8b/7cb6eb778c…" alt="SketchUp logo illuminated for cyber week" class="ter-focused-image focused-image-sketchup-arch_homepage-bring-your-vision-t…" style="opacity: 1; min-height: 100%; min-width: 100%; position: absolute;" data-focus-x="0" data-focus-y="0">

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.

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
Bring your vision to life Effortlessly turn creative ideas into buildable 3D m… div#gatsby-focus-wrapper > main.luna-layout > div > section#page-content
sketchup.trimble.com/light-texture.png1.1 MiB984.1 KiB
Close-up on a SketchUp render showing the entrance and patio of a commercial bu… a.t2-lo-feature-carousel__item > div.t2-lo-feature-carousel__item-media > picture.ter-focused-image-container > img.ter-focused-image
/5qimfmsew7zl/5uIpx9YHbZ3J0ZdUhELNT1/07de6258374078acf455...32.1 KiB16.7 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.

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.

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: 1.8 s

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
Bring your vision to life Effortlessly turn creative ideas into buildable 3D m… div#___gatsby > div#gatsby-focus-wrapper > main.luna-layout > div
0.111

Diagnostics

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: 7.4 s 1.4 MiB

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.1 s
Script Parsing & Compilation1.0 s
Other832 ms
Style & Layout691 ms
Parse HTML & CSS198 ms
Garbage Collection153 ms
Rendering38 ms

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
SketchUp logo illuminated for cyber week div.t2-hero-lead__box__inner > div.t2-hero-lead__background > picture.ter-focused-image-container > img.ter-focused-image
/5qimfmsew7zl/CLeItCuQzyar0Ix1BPD8b/7cb6eb778c29ab02b7aca...
A man sitting in front of a computer with a SketchUp model open on the screen, … div.t2-lo-recommendations__content > div.t2-lo-recommendations__image-wrap > picture.ter-focused-image-container > img.ter-focused-image
Render created in SketchUp showing a construction site with an in-progress stru… a.t2-lo-feature-carousel__item > div.t2-lo-feature-carousel__item-media > picture.ter-focused-image-container > img.ter-focused-image
/5qimfmsew7zl/UhmxPpzIgAgGuQMApPBHG/c489566b106e84270a32c...
Render created in SketchUp showing a construction site with an in-progress stru… a.t2-lo-feature-carousel__item > div.t2-lo-feature-carousel__item-media > picture.ter-focused-image-container > img.ter-focused-image
/5qimfmsew7zl/UhmxPpzIgAgGuQMApPBHG/c489566b106e84270a32c...
A SketchUp render showing an aerial view of a busy street and commercial buildi… a.t2-lo-feature-carousel__item > div.t2-lo-feature-carousel__item-media > picture.ter-focused-image-container > img.ter-focused-image
/5qimfmsew7zl/Ghp4Fqn4ixG6JtvbO8M0E/3662be87f07869e653528...
A SketchUp render showing an aerial view of a seaside cityscape illustrating an… a.t2-lo-feature-carousel__item > div.t2-lo-feature-carousel__item-media > picture.ter-focused-image-container > img.ter-focused-image
/5qimfmsew7zl/7Dk3tIPLVVVRnnYaTKQvO3/2d6e7838b946f4e519e3...
Close-up on a SketchUp render showing the entrance and patio of a commercial bu… a.t2-lo-feature-carousel__item > div.t2-lo-feature-carousel__item-media > picture.ter-focused-image-container > img.ter-focused-image
/5qimfmsew7zl/5uIpx9YHbZ3J0ZdUhELNT1/07de6258374078acf455...
A SketchUp rendering showing a photoreal residential interior living/dining roo… a.t2-lo-feature-carousel__item > div.t2-lo-feature-carousel__item-media > picture.ter-focused-image-container > img.ter-focused-image
/5qimfmsew7zl/1SuLkwj8jbnWK4N6MDhaKC/1bc0327a05677f9935d2...
A SketchUp render showing an aerial view of a busy street and commercial buildi… a.t2-lo-feature-carousel__item > div.t2-lo-feature-carousel__item-media > picture.ter-focused-image-container > img.ter-focused-image
/5qimfmsew7zl/Ghp4Fqn4ixG6JtvbO8M0E/3662be87f07869e653528...
A SketchUp render showing an aerial view of a seaside cityscape illustrating an… a.t2-lo-feature-carousel__item > div.t2-lo-feature-carousel__item-media > picture.ter-focused-image-container > img.ter-focused-image
/5qimfmsew7zl/7Dk3tIPLVVVRnnYaTKQvO3/2d6e7838b946f4e519e3...
Close-up on a SketchUp render showing the entrance and patio of a commercial bu… a.t2-lo-feature-carousel__item > div.t2-lo-feature-carousel__item-media > picture.ter-focused-image-container > img.ter-focused-image
/5qimfmsew7zl/5uIpx9YHbZ3J0ZdUhELNT1/07de6258374078acf455...
A SketchUp rendering showing a photoreal residential interior living/dining roo… a.t2-lo-feature-carousel__item > div.t2-lo-feature-carousel__item-media > picture.ter-focused-image-container > img.ter-focused-image
/5qimfmsew7zl/1SuLkwj8jbnWK4N6MDhaKC/1bc0327a05677f9935d2...
A SketchUp render showing an aerial view of a busy street and commercial buildi… a.t2-lo-feature-carousel__item > div.t2-lo-feature-carousel__item-media > picture.ter-focused-image-container > img.ter-focused-image
/5qimfmsew7zl/Ghp4Fqn4ixG6JtvbO8M0E/3662be87f07869e653528...
A SketchUp render showing an aerial view of a seaside cityscape illustrating an… a.t2-lo-feature-carousel__item > div.t2-lo-feature-carousel__item-media > picture.ter-focused-image-container > img.ter-focused-image
/5qimfmsew7zl/7Dk3tIPLVVVRnnYaTKQvO3/2d6e7838b946f4e519e3...
Silhouette of a person with SketchUp logo and white arrows pointing to the word… div.t2-media-inline-panel__media > div.t2-video-embed > picture.ter-focused-image-container > img.ter-focused-image
/5qimfmsew7zl/4stFQiwMQHFQlfuDza5Rf8/73b40949aa0f50b2cc95...
Barton Malow logo div.t2-lo-logo-grid__logos > div.t2-lo-logo-grid__logo > picture.ter-focused-image-container > img.ter-focused-image
CRTKL logo div.t2-lo-logo-grid__logos > div.t2-lo-logo-grid__logo > picture.ter-focused-image-container > img.ter-focused-image
Design Develop logo div.t2-lo-logo-grid__logos > div.t2-lo-logo-grid__logo > picture.ter-focused-image-container > img.ter-focused-image
HKS logo div.t2-lo-logo-grid__logos > div.t2-lo-logo-grid__logo > picture.ter-focused-image-container > img.ter-focused-image
McCarthy logo div.t2-lo-logo-grid__logos > div.t2-lo-logo-grid__logo > picture.ter-focused-image-container > img.ter-focused-image
M Moser Associates logo div.t2-lo-logo-grid__logos > div.t2-lo-logo-grid__logo > picture.ter-focused-image-container > img.ter-focused-image
Tyréns logo div.t2-lo-logo-grid__logos > div.t2-lo-logo-grid__logo > picture.ter-focused-image-container > img.ter-focused-image
Velux logo div.t2-lo-logo-grid__logos > div.t2-lo-logo-grid__logo > picture.ter-focused-image-container > img.ter-focused-image
Willmott Dixon logo div.t2-lo-logo-grid__logos > div.t2-lo-logo-grid__logo > picture.ter-focused-image-container > img.ter-focused-image
Architizer A+ Products Winner 2024 Badge div.t2-lo-logo-grid__logos > div.t2-lo-logo-grid__logo > picture.ter-focused-image-container > img.ter-focused-image
Architosh Best of Show 2025 Badge div.t2-lo-logo-grid__logos > div.t2-lo-logo-grid__logo > picture.ter-focused-image-container > img.ter-focused-image
G2 Grid Leader Spring 2025 Badge div.t2-lo-logo-grid__logos > div.t2-lo-logo-grid__logo > picture.ter-focused-image-container > img.ter-focused-image
G2 Best Relationship Spring 2025 Badge div.t2-lo-logo-grid__logos > div.t2-lo-logo-grid__logo > picture.ter-focused-image-container > img.ter-focused-image
G2 Easiest to Use Spring 2025 Badge div.t2-lo-logo-grid__logos > div.t2-lo-logo-grid__logo > picture.ter-focused-image-container > img.ter-focused-image
Omar Calderon div.t2-media-inline-panel__media > div.t2-video-embed > picture.ter-focused-image-container > img.ter-focused-image
/5qimfmsew7zl/GBa5fWrRs9IOkUrkvzb9l/27eee7037d541384770d0...
A grid of hexagon-shaped tiles featuring logos for some of the tools available … div.t2-lo-cards__card-wrap > div.t2-card > picture.ter-focused-image-container > img.ter-focused-image
A grid of hexagon-shaped tiles featuring examples of creations found in 3D Ware… div.t2-lo-cards__card-wrap > div.t2-card > picture.ter-focused-image-container > img.ter-focused-image
An intentionally pixelated image of the Denver Union Station building illustrat… div.t2-lo-cards__card-wrap > div.t2-card > picture.ter-focused-image-container > img.ter-focused-image
A line of hexagon-shaped tiles featuring logos for some of the connected featur… div.t2-lo-cards__card-wrap > div.t2-card > picture.ter-focused-image-container > img.ter-focused-image
A blue glowing cloud with the Trimble logo at the center, with logos for other … div.t2-lo-cards__card-wrap > div.t2-card > picture.ter-focused-image-container > img.ter-focused-image
A design showing many lines of code with images of gears all overlapping with a… div.t2-lo-cards__card-wrap > div.t2-card > picture.ter-focused-image-container > img.ter-focused-image
SketchUp logo div.t2-site-navigation-top--alternative-logo > a.t2-site-navigation-top__logo-holder--alternative > div.t2-site-navigation-top__logo--alternative > img.t2-site-navigation__logo-image
/5qimfmsew7zl/2nXLjh2FwQIrCtlGYklT4B/d1bc6c392be68d36501f...
Trimble Logo div.tt-flyout__panel > div.tt-flyout__logo-wrapper > a > img.tt-flyout__logo
/5qimfmsew7zl/6Pmk2Xm10SB6wT1CuHl7NY/933353621f595bd6894e...

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

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

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.

Names and labels

When a button doesn't have an accessible name, screen readers announce it as "button", making it unusable for users who rely on screen readers. Learn how to make buttons more accessible.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
div.t2-cart-flyout > div.t2-cart-flyout__panel > div.t2-cart-flyout__header > button.t2-cart-flyout__header__close-btn div.t2-cart-flyout > div.t2-cart-flyout__panel > div.t2-cart-flyout__header > button.t2-cart-flyout__header__close-btn

These are opportunities to improve the semantics of the controls in your application. This 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
EXPLORE THE ECOSYSTEM div.t2-lo-cards__content > div.t2-lo-cards__primary-content > div.t2-header-area > div.t2-lo-cards__eyebrow
MONTHLY div.t2-lo-price-cards__primary-content > div.t2-lo-price-cards-toggle > div.t2-lo-price-card__pill > div#monthly

These are opportunities to improve the legibility of your content.

Tables and lists

Screen readers have a specific way of announcing lists. Ensuring proper list structure aids screen reader output. Learn more about proper list structure.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
t2u-chevron-right div.t2-slider-carousel-wrap > div.slick-slider > div.slick-dots > ul.custom-slick-dots
ABOUT US Careers Contact Us Privacy Policy ISO/IEC 27001:2013 section.t2-footer__sector-footer > section.t2-footer__section-wrapper > nav.t2-footer__section > ul.t2-footer__footer-menu
DEVELOPERS Developer Center SketchUp Ruby API SketchUp SDK Extensions Developer… section.t2-footer__sector-footer > section.t2-footer__section-wrapper > nav.t2-footer__section > ul.t2-footer__footer-menu
LEARN Forum Contact Us Blog Campus YouTube section.t2-footer__sector-footer > section.t2-footer__section-wrapper > nav.t2-footer__section > ul.t2-footer__footer-menu
EXPLORE Trimble Trimble Construction Trimble Field Technology Visiting Professi… section.t2-footer__sector-footer > section.t2-footer__section-wrapper > nav.t2-footer__section > ul.t2-footer__footer-menu
CONNECT WITH US section.t2-footer__sector-footer > section.t2-footer__section-wrapper > nav.t2-footer__section-social > ul.t2-footer__footer-menu

Screen readers require list items (`<li>`) to be contained within a parent `<ul>`, `<ol>` or `<menu>` to be announced properly. Learn more about proper list structure.

Why this matters

Performance issues directly impact user engagement and conversion rates.

Failing Elements
div.slick-dots > ul.custom-slick-dots > div.custom-dots-wrapper > li div.slick-dots > ul.custom-slick-dots > div.custom-dots-wrapper > li
div.slick-dots > ul.custom-slick-dots > div.custom-dots-wrapper > li.slick-active div.slick-dots > ul.custom-slick-dots > div.custom-dots-wrapper > li.slick-active
div.slick-dots > ul.custom-slick-dots > div.custom-dots-wrapper > li div.slick-dots > ul.custom-slick-dots > div.custom-dots-wrapper > li
div.slick-dots > ul.custom-slick-dots > div.custom-dots-wrapper > li div.slick-dots > ul.custom-slick-dots > div.custom-dots-wrapper > li
div.slick-dots > ul.custom-slick-dots > div.custom-dots-wrapper > li div.slick-dots > ul.custom-slick-dots > div.custom-dots-wrapper > li
Careers nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
Contact Us nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
Privacy Policy nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
ISO/IEC 27001:2013 nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
Developer Center nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
SketchUp Ruby API nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
SketchUp SDK nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
Extensions nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
Developer Forum nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
Forum nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
Contact Us nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
Blog nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
Campus nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
YouTube nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
Trimble nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
Trimble Construction nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
Trimble Field Technology nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
Visiting Professionals nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
Non-Profit Organizations nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
Project Spectrum nav.t2-footer__section > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__items > li.t2-footer__footer-menu__item
Visit us on Facebook nav.t2-footer__section-social > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__social-wrapper > li.t2-footer__footer-menu__social-item
Visit us on Twitter nav.t2-footer__section-social > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__social-wrapper > li.t2-footer__footer-menu__social-item
Visit us on LinkedIn nav.t2-footer__section-social > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__social-wrapper > li.t2-footer__footer-menu__social-item
Visit us on TikTok nav.t2-footer__section-social > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__social-wrapper > li.t2-footer__footer-menu__social-item
Visit us on Instagram nav.t2-footer__section-social > ul.t2-footer__footer-menu > div.t2-footer__footer-menu__social-wrapper > li.t2-footer__footer-menu__social-item

These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader.

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
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 have valid values
`[aria-*]` attributes are valid and not misspelled
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
`[aria-hidden="true"]` elements do not contain focusable descendents
Elements use only permitted ARIA attributes
Document has a `<title>` element
`<html>` element has a `[lang]` attribute
`<html>` element has a valid value for its `[lang]` attribute
Links have a discernible name
No element has a `[tabindex]` value greater than 0
Touch targets have sufficient size and spacing.
Heading elements appear in a sequentially-descending order
Skip links are focusable.
Document has a main landmark.
Deprecated ARIA roles were not used
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
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
Links are distinguishable without relying on color.
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
`<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.
Elements with visible text labels have matching accessible names.
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.
96

Best Practices

General

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
Access to XMLHttpRequest at 'https://cdn.cookielaw.org/consent/8b739b3a-1d4a-4e73-a407-d3ba92a4f3c2/8b739b3a-1d4a-4e73-a407-d3ba92a4f3c2.json' from origin 'https://sketchup.trimble.com' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
Failed to load resource: net::ERR_FAILED
Uncaught TypeError: Cannot read properties of undefined (reading 'Domain')

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.

Why this matters

Performance issues directly impact user engagement and conversion rates.

URLMap URL
sketchup.trimble.com/app-81a194c2f0b3786a1073.jssketchup.trimble.com/app-81a194c2f0b3786a1073.js.map
/8ed4083672828cac697f83e269c9be724b54eb41-fa12e783c80df9e.../8ed4083672828cac697f83e269c9be724b54eb41-fa12e783c80df9e...
sketchup.trimble.com/79aa9deb-69a325bd32c822d3f6e0.jssketchup.trimble.com/79aa9deb-69a325bd32c822d3f6e0.js.map
sketchup.trimble.com/webpack-runtime-60e2a9cd8389c7c7bc8c.jssketchup.trimble.com/webpack-runtime-60e2a9cd8389c7c7bc8c.js.map
sketchup.trimble.com/framework-9d9a5d6205d7292f5844.jssketchup.trimble.com/framework-9d9a5d6205d7292f5844.js.map
/e40d74d175ec097271905f3ca976a83d499e58f9-19e6943a3919f2c.../e40d74d175ec097271905f3ca976a83d499e58f9-19e6943a3919f2c...
/e02681396474409fe90a22990d929b95750fe03a-3dc2c252edacb8e.../e02681396474409fe90a22990d929b95750fe03a-3dc2c252edacb8e...
/component---src-templates-general-page-template-js-10917.../component---src-templates-general-page-template-js-10917...
sketchup.trimble.com/commons-de627f940f4e13bd8d29.jssketchup.trimble.com/commons-de627f940f4e13bd8d29.js.map
sketchup.trimble.com/9920-265c15e2a2e40a7e0d76.jssketchup.trimble.com/9920-265c15e2a2e40a7e0d76.js.map
sketchup.trimble.com/9846-3153e00a0e178ff75d74.jssketchup.trimble.com/9846-3153e00a0e178ff75d74.js.map
sketchup.trimble.com/9580-620135162ad145acca0e.jssketchup.trimble.com/9580-620135162ad145acca0e.js.map
sketchup.trimble.com/8640-9f17d06570d6e2216ef0.jssketchup.trimble.com/8640-9f17d06570d6e2216ef0.js.map
sketchup.trimble.com/8319-79ab17fd0aae810a49b1.jssketchup.trimble.com/8319-79ab17fd0aae810a49b1.js.map
sketchup.trimble.com/7935-3ad9d2fe3fa190947d60.jssketchup.trimble.com/7935-3ad9d2fe3fa190947d60.js.map
sketchup.trimble.com/7272-81a04ce05c8a57297a6e.jssketchup.trimble.com/7272-81a04ce05c8a57297a6e.js.map
sketchup.trimble.com/7188-cbf1c04063cd99e3aa50.jssketchup.trimble.com/7188-cbf1c04063cd99e3aa50.js.map
sketchup.trimble.com/6894-1f46fbb15ffec4913f07.jssketchup.trimble.com/6894-1f46fbb15ffec4913f07.js.map
sketchup.trimble.com/6658-347f91762571d909bcfb.jssketchup.trimble.com/6658-347f91762571d909bcfb.js.map
/5fc06ec548adc806592e50ef58a326417adaeea2-8f8619972180868.../5fc06ec548adc806592e50ef58a326417adaeea2-8f8619972180868...
/5ecfa39d100b8717e59c4bde9134fd63d5cde8ed-618d7d5b4f26bf6.../5ecfa39d100b8717e59c4bde9134fd63d5cde8ed-618d7d5b4f26bf6...
sketchup.trimble.com/5955-20305bd627505a8145a8.jssketchup.trimble.com/5955-20305bd627505a8145a8.js.map
sketchup.trimble.com/5558-8b55aa6aa0889ead36d9.jssketchup.trimble.com/5558-8b55aa6aa0889ead36d9.js.map
sketchup.trimble.com/5201-c6e91c6e42cdfa64ebd1.jssketchup.trimble.com/5201-c6e91c6e42cdfa64ebd1.js.map
sketchup.trimble.com/4396-6b162eed58fc5eb6f4d0.jssketchup.trimble.com/4396-6b162eed58fc5eb6f4d0.js.map
sketchup.trimble.com/3857-cb3fdb763b17e37aa7d7.jssketchup.trimble.com/3857-cb3fdb763b17e37aa7d7.js.map
sketchup.trimble.com/34321f76-7bf9564366326cd7c15f.jssketchup.trimble.com/34321f76-7bf9564366326cd7c15f.js.map
sketchup.trimble.com/3081-14c2e5a43bc042c78130.jssketchup.trimble.com/3081-14c2e5a43bc042c78130.js.map
sketchup.trimble.com/2fbf9dd2-ef396f9a726da4c2ceb6.jssketchup.trimble.com/2fbf9dd2-ef396f9a726da4c2ceb6.js.map
/2f4ae1a600ae6d8228b1eb50d068163690d5f767-1bc115c28cf42b1.../2f4ae1a600ae6d8228b1eb50d068163690d5f767-1bc115c28cf42b1...
sketchup.trimble.com/29107295-84cd58226ea2fb5f7eab.jssketchup.trimble.com/29107295-84cd58226ea2fb5f7eab.js.map
sketchup.trimble.com/2730-1bdc4f51dc5ca23a0007.jssketchup.trimble.com/2730-1bdc4f51dc5ca23a0007.js.map
sketchup.trimble.com/2600-e50ea91bcd2d5c9728d7.jssketchup.trimble.com/2600-e50ea91bcd2d5c9728d7.js.map
sketchup.trimble.com/18b1f3c0-ceda850e2a7476ec3b50.jssketchup.trimble.com/18b1f3c0-ceda850e2a7476ec3b50.js.map
sketchup.trimble.com/188-4ffc15ab531c8f5805f7.jssketchup.trimble.com/188-4ffc15ab531c8f5805f7.js.map
sketchup.trimble.com/127-7123a881235f50b562aa.jssketchup.trimble.com/127-7123a881235f50b562aa.js.map
sketchup.trimble.com/1255-cc2003948a0074101240.jssketchup.trimble.com/1255-cc2003948a0074101240.js.map
Uses HTTPS
Avoids deprecated APIs
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
Redirects HTTP traffic to HTTPS
Mitigate clickjacking with XFO or CSP
85

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

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

Crawling and Indexing

Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. Learn how to make links crawlable

Why this matters

Performance issues directly impact user engagement and conversion rates.

Uncrawlable Link
Cancel div > div.t2-dialog > div.t2-dialog__buttons > a.t2-button
Proceed div > div.t2-dialog > div.t2-dialog__buttons > a.t2-button
OK div.t2-utility-nav__my-cart__menu > div.t2-utility-nav__my-cart__menu__inner > div.t2-utility-nav__my-cart__menu__buttons > a.t2-button
div.tt-flyout > div.tt-flyout__panel > div.tt-flyout__buttons-wrapper > a.tt-button div.tt-flyout > div.tt-flyout__panel > div.tt-flyout__buttons-wrapper > a.tt-button
div.tt-flyout > div.tt-flyout__panel > div.tt-flyout__buttons-wrapper > a.tt-button div.tt-flyout > div.tt-flyout__panel > div.tt-flyout__buttons-wrapper > a.tt-button
Cancel div > div.t2-dialog > div.t2-dialog__buttons > a.t2-button
Proceed div > div.t2-dialog > div.t2-dialog__buttons > a.t2-button
OK div.t2-site-navigation-mobile__utility-nav-item > section.t2-utility-nav__my-cart-mobile > div.t2-utility-nav__my-cart__menu__buttons > a.t2-button
CONTINUE SHOPPING div.t2-cart-flyout__body > section.t2-cart-flyout__empty > div.t2-cart-flyout__buttons > a.t2-button
Continue div > div.t2-dialog > div.t2-dialog__buttons > a.t2-button
OK div > div.t2-dialog > div.t2-dialog__buttons > a.t2-button
OK div > div.t2-dialog > div.t2-dialog__buttons > a.t2-button
OK div > div.t2-dialog > div.t2-dialog__buttons > a.t2-button
OK div > div.t2-dialog > div.t2-dialog__buttons > a.t2-button
OK div > div.t2-dialog > div.t2-dialog__buttons > a.t2-button
Continue div > div.t2-dialog > div.t2-dialog__buttons > a.t2-button
Continue div > div.t2-dialog > div.t2-dialog__buttons > a.t2-button
Continue div > div.t2-dialog > div.t2-dialog__buttons > a.t2-button

To appear in search results, crawlers need access to your app.

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
robots.txt is valid
Image elements have `[alt]` attributes
Document has a valid `hreflang`
Document has a valid `rel=canonical`

Send Feedback