Performance
· 14 checks — Lighthouse + waterfall + sustainability rolled into one auditable list.Performance-focused optimization plan with CWV assessment, top offenders, and time estimates
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
2.02 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
5.26 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
5.27 s
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.074
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
13.07 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.
41.79 s
Page Load Progression
FPage Weight BudgetAction4.7 MB transferred, 507 requestsFIX
Large JavaScript bundles delay interactivity. Split code by route or defer non-critical scripts.
JavaScript bundle is large — code-split routes and lazy-load off-screen components to defer.
Source: web.dev
Convert images to WebP/AVIF and resize to display dimensions to reduce transfer size.
Image bandwidth is high — modern formats (WebP/AVIF) and resizing typically cut it 50%+.
Source: web.dev
Subset fonts to include only used characters, or switch to system font stacks.
Font payload is large — subset to used glyphs only, or fall back to system fonts (zero load time).
Source: web.dev font loading
Each request adds latency. Bundle small files, use sprites, or eliminate unnecessary requests.
High HTTP request count — bundling, sprite-ing, and HTTP/2 server push can reduce per-request overhead.
Source: web.dev
DThird-Party ImpactAction75% third-party, 0 ms blockingFIX
FJS Execution CostAction21211ms total JS executionFIX
Main Thread Breakdown
| Script | Total | Scripting | Parse/Compile | Party |
|---|---|---|---|---|
| https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202604010101/pubads_impl.js?cb=31097617 | 4448ms | 3807ms | 60ms | 3rd |
| Unattributable | 3985ms | 1245ms | 0ms | 3rd |
| https://techcrunch.com/ | 2047ms | 60ms | 11ms | 1st |
| https://www.gstatic.com/recaptcha/releases/kUYUkUlSyqkjTSMaN2w3RaOh/recaptcha__en.js | 1583ms | 1383ms | 129ms | 3rd |
| https://js-na2.hs-analytics.net/analytics/1775312700000/242234635.js | 1059ms | 551ms | 10ms | 3rd |
| https://scripts.clarity.ms/0.8.59/clarity.js | 929ms | 863ms | 13ms | 3rd |
| https://public.servenobid.com/partner/163965/163966/wrapup_1.0.0.js?ver=692234b82bbd521da4fa | 767ms | 666ms | 56ms | 3rd |
| https://cdn.parsely.com/keys/techcrunch.com/p.js?gtm_ver=3.2 | 763ms | 673ms | 6ms | 3rd |
| https://www.googletagmanager.com/gtag/js?id=G-KJR3C2ZQN6&cx=c>m=4e6411h1 | 711ms | 608ms | 96ms | 3rd |
| https://www.googletagmanager.com/gtm.js?id=GTM-M24PKK8 | 580ms | 477ms | 67ms | 3rd |
Showing top 10 of 34 scripts
FJS BundlesAction108 scripts, 1013 KB unusedFIX
Downloaded but never executed on this page.
| Script | Size | Unused | Minified | Party |
|---|---|---|---|---|
| https://www.gstatic.com/recaptcha/releases/kUYUkUlSyqkjTSMaN2w3RaOh/recaptcha__en.js | 363 KB | 179 KB (49%) | ✓ | 3rd |
| https://www.gstatic.com/recaptcha/releases/kUYUkUlSyqkjTSMaN2w3RaOh/recaptcha__en.js | 363 KB | 179 KB (49%) | ✓ | 3rd |
| https://www.gstatic.com/recaptcha/releases/kUYUkUlSyqkjTSMaN2w3RaOh/recaptcha__en.js | 0 KB | 179 KB (49%) | ✓ | 3rd |
| https://public.servenobid.com/partner/163965/163966/wrapup_1.0.0.js?ver=692234b82bbd521da4fa | 441 KB | 142 KB (32%) | ✓ | 3rd |
| https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202604010101/pubads_impl.js?cb=31097617 | 182 KB | 78 KB (43%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtag/js?id=G-KJR3C2ZQN6&cx=c>m=4e6411h1 | 171 KB | 65 KB (38%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtm.js?id=GTM-M24PKK8 | 163 KB | 61 KB (38%) | ✓ | 3rd |
| https://ak.sail-horizon.com/spm/spm.v1.min.js?ver=6.9.4 | 55 KB | 39 KB (72%) | ✓ | 3rd |
| https://fundingchoicesmessages.google.com/i/23293943471?ers=3 | 70 KB | 33 KB (48%) | ✓ | 3rd |
| https://connect.facebook.net/en_US/fbevents.js | 95 KB | 32 KB (34%) | ✓ | 3rd |
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
CImage OptimizationAction143 images, 0 KB saveableREVIEW
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
CGreen HostingActionWhether the site is served from green-energy infrastructureREVIEW
Green Hosting
No green hosting detected
A+Text CompressionAll text resources are compressedPASS
A+Font Loading10 fonts (226 KB)PASS
Web fonts
10
226 KB total
Render-blocking
0
of 10
Dominant font-display
swap
Most common across fonts
Font loading timeline
Optimization checklist
- Preload critical fonts (priority=high)
- Use woff2 format for all fonts
- Set font-display to swap, optional, or fallback
- Subset large fonts (≤100 KB each)
A+Resource CachingAll resources properly cachedPASS
A+Critical Rendering PathNo render-blocking resourcesPASS
A+Resource Hints6 hints, 0 missing preconnectsPASS
Current Resource Hints
6 resource hints configured
AHTTP Cachingmax-age=300 (5 minutes)PASS
max-age=300, must-revalidate
| Directive | Value | Meaning |
|---|---|---|
| max-age | 300 | Cache for 5 minutes |
| must-revalidate | — | Must recheck with server after expiry |
Network Waterfall507 requests over 0msINFO
Performance analysis not available for this result.
Third-Party Script CostPer-script blocking time, transfer cost, and cache headersINFO
| Script | Category | Execution | Transfer | Unused | Monthly Cost | Verdict |
|---|---|---|---|---|---|---|
securepubads.g.doubleclick.net securepubads.g.doubleclick.net | Other | 4448ms | 182 KB | 43% | $59/mo | Costly |
Unattributable Unattributable | Other | 3985ms | 0 KB | — | $53/mo | Costly |
www.gstatic.com www.gstatic.com | Other | 1583ms | 0 KB | 49% | $21/mo | Costly |
js-na2.hs-analytics.net js-na2.hs-analytics.net | Other | 1059ms | 42 KB | — | $14/mo | Costly |
Microsoft Clarity scripts.clarity.ms | Session Replay | 929ms | 26 KB | — | $12/mo | Costly |
public.servenobid.com public.servenobid.com | Other | 767ms | 441 KB | 32% | $10/mo | Costly |
cdn.parsely.com cdn.parsely.com | Other | 763ms | 22 KB | — | $10/mo | Costly |
Google Tag Manager www.googletagmanager.com | Tag Manager | 711ms | 171 KB | 38% | $9/mo | Costly |
Google Tag Manager www.googletagmanager.com | Tag Manager | 580ms | 163 KB | 38% | $8/mo | Costly |
fundingchoicesmessages.google.com fundingchoicesmessages.google.com | Other | 457ms | 70 KB | 48% | $6/mo | Costly |
fundingchoicesmessages.google.com fundingchoicesmessages.google.com | Other | 325ms | 20 KB | — | $4/mo | Costly |
Facebook Pixel connect.facebook.net | Advertising | 270ms | 37 KB | — | $4/mo | Costly |
cdn.brandmetrics.com cdn.brandmetrics.com | Other | 264ms | 18 KB | — | $4/mo | Costly |
Facebook Pixel connect.facebook.net | Advertising | 211ms | 95 KB | 34% | $3/mo | Costly |
ep2.adtrafficquality.google ep2.adtrafficquality.google | Other | 194ms | 8 KB | — | $3/mo | Optional |
goddesslamps.com goddesslamps.com | Other | 162ms | 34 KB | — | $2/mo | Optional |
js-na2.hscollectedforms.net js-na2.hscollectedforms.net | Other | 157ms | 26 KB | — | $2/mo | Optional |
challenges.cloudflare.com challenges.cloudflare.com | Other | 151ms | 0 KB | — | $2/mo | Optional |
www.googletagservices.com www.googletagservices.com | Other | 147ms | 34 KB | — | $2/mo | Optional |
ak.sail-horizon.com ak.sail-horizon.com | Other | 137ms | 55 KB | 72% | $2/mo | Optional |
/_/mss/boq-content-ads-contributor/_/js/k=boq-content-ads-contributor.ContributorServingResponseClientJs.en_US.9cbFh0us9Nc.es5.O/d=1/rs=AJlcJMx-ZbUVVtbN3vghrQ2BOXIs7LwVJg/m=kernel_loader,loader_js_executable /_/mss/boq-content-ads-contributor/_/js/k=boq-content-ads-contributor.ContributorServingResponseClientJs.en_US.9cbFh0us9Nc.es5.O/d=1/rs=AJlcJMx-ZbUVVtbN3vghrQ2BOXIs7LwVJg/m=kernel_loader,loader_js_executable | Other | 106ms | 0 KB | — | $1/mo | Optional |
LinkedIn Insight snap.licdn.com | Advertising | 96ms | 19 KB | — | $1/mo | Optional |
scripts.atmtd.com scripts.atmtd.com | Other | 91ms | 26 KB | — | $1/mo | Optional |
edge.atmtd.com edge.atmtd.com | Other | 61ms | 9 KB | — | $1/mo | Optional |
sb.scorecardresearch.com sb.scorecardresearch.com | Other | 58ms | 7 KB | — | $1/mo | Optional |
fundingchoicesmessages.google.com fundingchoicesmessages.google.com | Other | 53ms | 1 KB | — | $1/mo | Optional |
fundingchoicesmessages.google.com fundingchoicesmessages.google.com | Other | 51ms | 4 KB | — | $1/mo | Optional |
These scripts may cost more than they're worth
- securepubads.g.doubleclick.net adds 4448ms and costs ~$59/month
- Unattributable adds 3985ms and costs ~$53/month
- www.gstatic.com adds 1583ms and costs ~$21/month
- js-na2.hs-analytics.net adds 1059ms and costs ~$14/month
- Microsoft Clarity adds 929ms and costs ~$12/month
- public.servenobid.com adds 767ms and costs ~$10/month
- cdn.parsely.com adds 763ms and costs ~$10/month
- Google Tag Manager adds 711ms and costs ~$9/month
- Google Tag Manager adds 580ms and costs ~$8/month
- fundingchoicesmessages.google.com adds 457ms and costs ~$6/month
- fundingchoicesmessages.google.com adds 325ms and costs ~$4/month
- Facebook Pixel adds 270ms and costs ~$4/month
- cdn.brandmetrics.com adds 264ms and costs ~$4/month
- Facebook Pixel adds 211ms and costs ~$3/month
84% of JavaScript execution time is spent on third-party scripts. Consider auditing which scripts are essential.
When third-party JS execution time exceeds your own, performance gains from frontend work are capped by code you don't own.
Learn more ▾ ▴
Every millisecond of third-party JS competes with your own for main-thread time. If their share is bigger than yours, optimization on your code base barely moves the needle. Audit, defer, or remove third-parties before further frontend optimization. Use Lighthouse's third-party audit to identify the worst offenders.
Source: web.dev
securepubads.g.doubleclick.net takes 4448ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
Unattributable takes 3985ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
www.gstatic.com takes 1583ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
js-na2.hs-analytics.net takes 1059ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
Microsoft Clarity takes 929ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
public.servenobid.com takes 767ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
cdn.parsely.com takes 763ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
Google Tag Manager takes 711ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
Google Tag Manager takes 580ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
fundingchoicesmessages.google.com takes 457ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
fundingchoicesmessages.google.com takes 325ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
Facebook Pixel takes 270ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
cdn.brandmetrics.com takes 264ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
Facebook Pixel takes 211ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
72% of ak.sail-horizon.com's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev