Skip to content
https://webscore.now

Performance

· 26 checks — Lighthouse + waterfall + sustainability rolled into one auditable list.
SCORE
90
GRADE
A
FIX
2
REVIEW
3
PASS
18
INFO
3

Performance-focused optimization plan with CWV assessment, top offenders, and time estimates

45
Performance Overall performance score (0–100) based on Core Web Vitals and other metrics. 90+ is good.
93
Accessibility Measures how accessible the page is for users with disabilities. Checks color contrast, ARIA labels, and semantic HTML.
92
Best Practices Checks for modern web development best practices including HTTPS, no console errors, and secure JavaScript.
92
SEO Measures basic SEO optimizations: meta tags, crawlability, link text, and mobile friendliness.

First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.

3.70 s

Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.

8.30 s

Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.

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

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

13.32 s

Page Load Progression

1.5 s
2.9 s
4.4 s
5.8 s
7.3 s
8.7 s
10.2 s
11.6 s
Checks
26
18 PASS 3 REVIEW 2 FIX
F
JS Execution Cost
Action
16280ms total JS execution
FIX
16280ms total JS execution
Warning::
https://webscore.now/: 12970ms CPU time
Warning::
https://webscore.now/_next/static/chunks/3ds9c0d2y...: 1295ms CPU time
Warning::
Unattributable: 1061ms CPU time
Warning::
https://www.googletagmanager.com/gtag/js?id=G-R74V...: 454ms CPU time
Info::
https://webscore.now/_next/static/chunks/436kw062j...: 200ms CPU time
Info::
Third-party scripts: 454ms (3% of total)

Main Thread Breakdown

Style & Layout 42% Other 34% Script Evaluation 12% Rendering 9%
ScriptTotalScriptingParse/CompileParty
https://webscore.now/12970ms178ms89ms1st
https://webscore.now/_next/static/chunks/3ds9c0d2ysck3.js1295ms965ms34ms1st
Unattributable1061ms29ms0ms1st
https://www.googletagmanager.com/gtag/js?id=G-R74VF7Z44V454ms322ms83ms3rd
https://webscore.now/_next/static/chunks/436kw062jwpt-.js200ms196ms3ms1st
https://webscore.now/_next/static/chunks/2frd8yvlymooz.js181ms135ms14ms1st
https://webscore.now/_next/static/chunks/1vmqos3hli90c.js67ms13ms53ms1st
https://webscore.now/_next/static/chunks/2btrh8jhq-49l.js52ms40ms10ms1st
D
HTTP Caching
Action
no-store (uncacheable)
FIX
no-store (uncacheable)
Info::
Cache-Control: no-store prevents all caching
Intentional for dynamic content, but increases server load for every page view.
Got: private, no-cache, no-store, max-age=0, must-revalidate
Info::
No ETag or Last-Modified header
Conditional requests (304 Not Modified) are not possible without validators.
Cache-Control

private, no-cache, no-store, max-age=0, must-revalidate

DirectiveValueMeaning
privateOnly browser cache, not CDN/proxy
no-cacheCache but always revalidate first
no-storeNever cache this response
max-age0Cache for 0 seconds
must-revalidateMust recheck with server after expiry
B
Image Optimization
19 images, 0 KB saveable
REVIEW
19 images, 0 KB saveable
Info::
All images are well-optimized
19 images 99 KB
0 oversized -0 KB
16 legacy format
0 missing dimensions CLS risk
C
JS Bundles
Action
27 scripts, 164 KB unused
REVIEW
27 scripts, 164 KB unused
Warning::
https://www.googletagmanager.com/gtag/js?id=G-R74V...: 69 KB unused (42%)
Consider code splitting or tree shaking to reduce unused code.
Warning::
https://webscore.now/_next/static/chunks/1vmqos3hl...: 69 KB unused (100%)
Consider code splitting or tree shaking to reduce unused code.
Warning::
https://webscore.now/_next/static/chunks/3ds9c0d2y...: 26 KB unused (37%)
Consider code splitting or tree shaking to reduce unused code.
Info::
Total unused JavaScript: 164 KB
164 KB unused JavaScript

Downloaded but never executed on this page.

ScriptSizeUnusedMinifiedParty
https://www.googletagmanager.com/gtag/js?id=G-R74VF7Z44V166 KB69 KB (42%)3rd
https://webscore.now/_next/static/chunks/1vmqos3hli90c.js75 KB69 KB (100%)1st
https://webscore.now/_next/static/chunks/3ds9c0d2ysck3.js72 KB26 KB (37%)1st
https://webscore.now/_next/static/chunks/2btrh8jhq-49l.js21 KB1st
https://webscore.now/_next/static/chunks/088kvmuxdhiu9.js9 KB1st
https://webscore.now/_next/static/chunks/2frd8yvlymooz.js27 KB1st
https://webscore.now/_next/static/chunks/turbopack-3s0vt3pyf_omn.js5 KB1st
https://webscore.now/_next/static/chunks/2n4_6e6rkgtzo.js8 KB1st
https://webscore.now/_next/static/chunks/0ktt67b7xgxa4.js8 KB1st
https://webscore.now/_next/static/chunks/0pyt-xq-qp7o8.js10 KB1st

Consider code splitting or tree shaking to reduce unused code.

Why this matters

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.

Why this matters

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.

Why this matters

This bundle has high unused code — code-split or tree-shake to ship only what executes.

Source: web.dev / Lighthouse coverage

B
JavaScript Blocking
2 JS blocking issue(s) detected
REVIEW
2 JS blocking issue(s) detected
Warning::
1 render-blocking <script src> tag(s) without async/defer
Each `<script src=...>` without `async`, `defer`, or `type="module"` blocks HTML parsing while the browser fetches and executes it. The block lasts the entire round-trip + execution time -- on slow networks this translates directly into LCP delay. Add `defer` (executes after parse, in source order) for scripts that interact with the DOM, or `async` (executes whenever ready) for analytics / independent scripts. Module scripts (`type="module"`) are deferred by default.
Warning::
Total JS execution time is 16.3 s -- over the 3.5s budget
Total JavaScript execution (parse + compile + run) across all scripts exceeds 3.5 seconds. On low-end devices that becomes 7-15+ seconds and shows up directly in TBT and INP. Reduce by: tree-shaking unused dependencies, code-splitting (dynamic `import()`), removing or deferring third-party tracking, and replacing heavy frameworks where they're not needed.
A
Page Weight Budget
779 KB transferred, 72 requests
PASS
779 KB transferred, 72 requests
Info::
Page weighs 2.6 MB (779 KB transferred)
Warning::
JavaScript is 533 KB — consider code splitting or lazy loading
Large JavaScript bundles delay interactivity. Split code by route or defer non-critical scripts.
Got: 533 KB
Info::
72 HTTP requests
Info::
Estimated 0.16 g CO2 per page load
779 KB / 2.4 MB budget
779 KB transferred
72 requests
0.16 g CO2 per page load
JavaScript 533.3 KiB 68%
Images 99.3 KiB 13%
CSS 58.7 KiB 8%
HTML 56.4 KiB 7%
Other 26.9 KiB 3%
Other 2.2 KiB 0%
Other 1.5 KiB 0%
Other 308 B 0%
Other 0 B 0%
0 2.4 MB 4.9 MB
Under budget

Large JavaScript bundles delay interactivity. Split code by route or defer non-critical scripts.

Why this matters

JavaScript bundle is large — code-split routes and lazy-load off-screen components to defer.

Source: web.dev

A
Third-Party Impact
30% third-party, 0 ms blocking
PASS
30% third-party, 0 ms blocking
Info::
Third-party code accounts for 30% of page weight (235.1 KiB of 778.6 KiB)
Info::
Third-party blocking time is low (0 ms)
70%
30%
First-party Third-party
A+
Text Compression
All text resources are compressed
PASS
All text resources are compressed
Info::
All text resources are compressed
All text resources are properly compressed.
A+
Font Loading
No web fonts (system fonts)
PASS
No web fonts (system fonts)
Info::
No web fonts loaded — system fonts are fastest
No web fonts loaded — system fonts are optimal.
A+
Resource Caching
All resources properly cached
PASS
All resources properly cached
Info::
No caching issues found
All static resources have appropriate caching headers.
A+
Critical Rendering Path
No render-blocking resources
PASS
No render-blocking resources
Info::
No render-blocking resources detected
A+
Resource Hints
8 hints, 0 missing preconnects
PASS
8 hints, 0 missing preconnects
Info::
Page uses 8 resource hint(s)

Current Resource Hints

preconnect
1
preload
2
dns-prefetch
5
prefetch

8 resource hints configured

A+
HTTP/3 (QUIC)
HTTP/3 advertised via Alt-Svc
PASS
HTTP/3 advertised via Alt-Svc
Info::
HTTP/3 (QUIC) is supported
First-load mobile users on cellular networks see meaningful latency improvements with HTTP/3. The QUIC transport collapses TLS + TCP handshakes into one and recovers faster from packet loss.
A+
Compression Algorithm
Main response uses brotli
PASS
Main response uses brotli
Info::
Main HTML response uses brotli (Content-Encoding: br)
Brotli is the best text-compression algorithm for general use, ~20% smaller than gzip on average (40% on smaller files). Modern browsers all support it.
A+
LCP Image Preload
LCP preload audit not available
PASS
LCP preload audit not available
Info::
LCP image preload audit not available for this scan
A+
Main HTML Cache-Control
Main HTML uses no-store -- correct for sensitive/dynamic content
PASS
Main HTML uses no-store -- correct for sensitive/dynamic content
Info::
Main HTML uses no-store -- correct for sensitive/dynamic content
Got: private, no-cache, no-store, max-age=0, must-revalidate
A+
Server-Timing Observability
4 Server-Timing entries advertised
PASS
4 Server-Timing entries advertised
Info::
Server-Timing header advertises 4 timing entries
A+
Server Response Intelligence
2 server-response signal(s) detected
PASS
2 server-response signal(s) detected
Info::
`Vary` header declared: rsc, next-router-state-tree, next-router-prefetch, next-router-segment-prefetch,...
The page declares a `Vary` header, telling downstream caches which request headers the response varies on. Critical for content-negotiated responses (compression, language, cookies, device class).
Info::
No `ETag` or `Last-Modified` -- conditional GET not supported
Without either header, browsers can't issue conditional GETs and refresh always re-downloads the full response body even when nothing changed. Add `ETag: "<hash>"` (or `Last-Modified: <date>`) on cacheable responses; the server returns 304 Not Modified when the client's cached copy is still valid, saving bandwidth.
A+
Page Weight Inventory
72 resources · 779 KB · 164 KB savings available
PASS
72 resources · 779 KB · 164 KB savings available
Info::
Within 1MB page-weight target
Got: 779 KB
Info::
~164 KB of savings available
Info::
27 third-party resources (30% of weight)
72 resources · 778.6 KiB · 27 third-party Within 1MB page-weight target
JavaScript 68% · 533.3 KiB
Image 13% · 100.9 KiB
CSS 8% · 58.7 KiB
Document 7% · 56.5 KiB
Other 4% · 29.2 KiB

~164.4 KiB of savings available

Remove unused JavaScript: 164.4 KiB
A+
Render-Blocking Resources
No render-blocking resources detected
PASS
No render-blocking resources detected
Info::
No render-blocking resources detected in <head>
A+
Third-Party Resources
No third-party resources detected
PASS
No third-party resources detected
A+
CSS Performance Depth
No CSS performance depth issues detected
PASS
No CSS performance depth issues detected
Info::
No CSS performance depth issues detected
A+
Green Hosting
Whether the site is served from green-energy infrastructure
PASS

Green Hosting

This site is hosted on green energy infrastructure

Provider: Cloudflare

Network Waterfall
72 requests over 9816ms
INFO
0 ms 2.0 s 4.0 s 6.0 s 8.0 s 10.0 s FCP 3.7 s LCP 8.3 shttps://webscore.now// https://webscore.now/ — 200 — 56.4 KiB — 3.1 s — h3https://webscore.now/cdn-cgi/speculation/cdn-cgi/speculation https://webscore.now/cdn-cgi/speculation — 200 — 582 B — 272 ms — h3https://webscore.now/_next/static/chunks/28nasuho_0bjy.css/_next/static/chunks/28nasuho_0bjy.... https://webscore.now/_next/static/chunks/28nasuho_0bjy.css — 200 — 58.7 KiB — 2.8 s — h3https://webscore.now/logo.svg/logo.svg https://webscore.now/logo.svg — 200 — 1.6 KiB — 4.2 s — h3https://webscore.now/_next/image?url=%2Fdemo-preview2.webp&w=750&q=75/_next/image?url=%2Fdemo-preview2.w... https://webscore.now/_next/image?url=%2Fdemo-preview2.webp&w=750&q=75 — 200 — 14.1 KiB — 1.9 s — h3https://webscore.now/_next/static/chunks/436kw062jwpt-.js/_next/static/chunks/436kw062jwpt-.... https://webscore.now/_next/static/chunks/436kw062jwpt-.js — 200 — 5.3 KiB — 1.5 s — h3https://webscore.now/_next/static/chunks/1rm737diirj6u.js/_next/static/chunks/1rm737diirj6u.... https://webscore.now/_next/static/chunks/1rm737diirj6u.js — 200 — 9.9 KiB — 1.8 s — h3https://webscore.now/_next/static/chunks/2vod_kqgyeqpx.js/_next/static/chunks/2vod_kqgyeqpx.... https://webscore.now/_next/static/chunks/2vod_kqgyeqpx.js — 200 — 11.0 KiB — 1.8 s — h3https://webscore.now/_next/static/chunks/3ds9c0d2ysck3.js/_next/static/chunks/3ds9c0d2ysck3.... https://webscore.now/_next/static/chunks/3ds9c0d2ysck3.js — 200 — 72.1 KiB — 2.0 s — h3https://webscore.now/_next/static/chunks/1rrmt015nuxag.js/_next/static/chunks/1rrmt015nuxag.... https://webscore.now/_next/static/chunks/1rrmt015nuxag.js — 200 — 8.6 KiB — 1.8 s — h3https://webscore.now/_next/static/chunks/2frd8yvlymooz.js/_next/static/chunks/2frd8yvlymooz.... https://webscore.now/_next/static/chunks/2frd8yvlymooz.js — 200 — 27.4 KiB — 2.0 s — h3https://webscore.now/_next/static/chunks/turbopack-3s0vt3pyf_omn.js/_next/static/chunks/turbopack-3s0v... https://webscore.now/_next/static/chunks/turbopack-3s0vt3pyf_omn.js — 200 — 5.4 KiB — 1.3 s — h3https://webscore.now/_next/static/chunks/2n4_6e6rkgtzo.js/_next/static/chunks/2n4_6e6rkgtzo.... https://webscore.now/_next/static/chunks/2n4_6e6rkgtzo.js — 200 — 8.1 KiB — 2.1 s — h3https://webscore.now/_next/static/chunks/0ktt67b7xgxa4.js/_next/static/chunks/0ktt67b7xgxa4.... https://webscore.now/_next/static/chunks/0ktt67b7xgxa4.js — 200 — 7.8 KiB — 1.3 s — h3https://webscore.now/_next/static/chunks/0pyt-xq-qp7o8.js/_next/static/chunks/0pyt-xq-qp7o8.... https://webscore.now/_next/static/chunks/0pyt-xq-qp7o8.js — 200 — 9.8 KiB — 1.9 s — h3https://webscore.now/_next/static/chunks/0c934zwmw2ase.js/_next/static/chunks/0c934zwmw2ase.... https://webscore.now/_next/static/chunks/0c934zwmw2ase.js — 200 — 11.8 KiB — 1.9 s — h3https://webscore.now/_next/static/chunks/2-9rt945pl3cn.js/_next/static/chunks/2-9rt945pl3cn.... https://webscore.now/_next/static/chunks/2-9rt945pl3cn.js — 200 — 10.8 KiB — 1.9 s — h3https://webscore.now/_next/static/chunks/2btrh8jhq-49l.js/_next/static/chunks/2btrh8jhq-49l.... https://webscore.now/_next/static/chunks/2btrh8jhq-49l.js — 200 — 20.9 KiB — 1.9 s — h3https://webscore.now/_next/static/chunks/11o8z1dmxeqzj.js/_next/static/chunks/11o8z1dmxeqzj.... https://webscore.now/_next/static/chunks/11o8z1dmxeqzj.js — 200 — 4.6 KiB — 1.8 s — h3https://webscore.now/_next/static/chunks/088kvmuxdhiu9.js/_next/static/chunks/088kvmuxdhiu9.... https://webscore.now/_next/static/chunks/088kvmuxdhiu9.js — 200 — 9.1 KiB — 1.7 s — h3https://webscore.now/_next/static/chunks/1qrogihelixv8.js/_next/static/chunks/1qrogihelixv8.... https://webscore.now/_next/static/chunks/1qrogihelixv8.js — 200 — 12.3 KiB — 1.8 s — h3https://webscore.now/_next/static/chunks/21nnpdewk3e_a.js/_next/static/chunks/21nnpdewk3e_a.... https://webscore.now/_next/static/chunks/21nnpdewk3e_a.js — 200 — 6.8 KiB — 978 ms — h3https://webscore.now/_next/static/chunks/0p6-c0q6vp6zy.js/_next/static/chunks/0p6-c0q6vp6zy.... https://webscore.now/_next/static/chunks/0p6-c0q6vp6zy.js — 200 — 13.8 KiB — 1.9 s — h3https://webscore.now/_next/static/chunks/0gwirm9hvyw0c.js/_next/static/chunks/0gwirm9hvyw0c.... https://webscore.now/_next/static/chunks/0gwirm9hvyw0c.js — 200 — 8.1 KiB — 1.7 s — h3https://webscore.now/_next/static/chunks/44xaewm67819g.js/_next/static/chunks/44xaewm67819g.... https://webscore.now/_next/static/chunks/44xaewm67819g.js — 200 — 12.2 KiB — 1.9 s — h3https://webscore.now/site.webmanifest/site.webmanifest https://webscore.now/site.webmanifest — 200 — 1.5 KiB — 221 ms — h2https://webscore.now/api/badge/cml9g051n000c7cl85itoppkn?theme=light&style=score/api/badge/cml9g051n000c7cl85itoppk... https://webscore.now/api/badge/cml9g051n000c7cl85itoppkn?theme=light&style=score — 200 — 1.9 KiB — 844 ms — h3https://lh3.googleusercontent.com/a/ACg8ocIRYcOTSP5hdo5p1FEQTSKzVU4LMqCQt6OOevAH_k86coXFgA=s96-clh3.googleusercontent.com/a/ACg8ocI... https://lh3.googleusercontent.com/a/ACg8ocIRYcOTSP5hdo5p1FEQTSKzVU4LMqCQt6OOevAH_k86coXFgA=s96-c — 200 — 1.4 KiB — 309 ms — h2https://lh3.googleusercontent.com/a/ACg8ocLzRFcRannMI9RxNRs3WLc02wHAxVSzkCMagkos9RJqtAriIw=s96-clh3.googleusercontent.com/a/ACg8ocL... https://lh3.googleusercontent.com/a/ACg8ocLzRFcRannMI9RxNRs3WLc02wHAxVSzkCMagkos9RJqtAriIw=s96-c — 200 — 1.7 KiB — 282 ms — h2https://lh3.googleusercontent.com/a/ACg8ocKMQkAuXsPGsI8qw3dtqg9nnEWnijdpm39bc1FjgbU3D27H=s96-clh3.googleusercontent.com/a/ACg8ocK... https://lh3.googleusercontent.com/a/ACg8ocKMQkAuXsPGsI8qw3dtqg9nnEWnijdpm39bc1FjgbU3D27H=s96-c — 200 — 1.4 KiB — 284 ms — h2
0 ms 2.0 s 4.0 s 6.0 s 8.0 s 10.0 s FCP 3.7 s LCP 8.3 shttps://webscore.now// https://webscore.now/ — 200 — 56.4 KiB — 3.1 s — h3https://webscore.now/cdn-cgi/speculation/cdn-cgi/speculation https://webscore.now/cdn-cgi/speculation — 200 — 582 B — 272 ms — h3https://webscore.now/_next/static/chunks/28nasuho_0bjy.css/_next/static/chunks/28nasuho_0bjy.... https://webscore.now/_next/static/chunks/28nasuho_0bjy.css — 200 — 58.7 KiB — 2.8 s — h3https://webscore.now/logo.svg/logo.svg https://webscore.now/logo.svg — 200 — 1.6 KiB — 4.2 s — h3https://webscore.now/_next/image?url=%2Fdemo-preview2.webp&w=750&q=75/_next/image?url=%2Fdemo-preview2.w... https://webscore.now/_next/image?url=%2Fdemo-preview2.webp&w=750&q=75 — 200 — 14.1 KiB — 1.9 s — h3https://webscore.now/_next/static/chunks/436kw062jwpt-.js/_next/static/chunks/436kw062jwpt-.... https://webscore.now/_next/static/chunks/436kw062jwpt-.js — 200 — 5.3 KiB — 1.5 s — h3https://webscore.now/_next/static/chunks/1rm737diirj6u.js/_next/static/chunks/1rm737diirj6u.... https://webscore.now/_next/static/chunks/1rm737diirj6u.js — 200 — 9.9 KiB — 1.8 s — h3https://webscore.now/_next/static/chunks/2vod_kqgyeqpx.js/_next/static/chunks/2vod_kqgyeqpx.... https://webscore.now/_next/static/chunks/2vod_kqgyeqpx.js — 200 — 11.0 KiB — 1.8 s — h3https://webscore.now/_next/static/chunks/3ds9c0d2ysck3.js/_next/static/chunks/3ds9c0d2ysck3.... https://webscore.now/_next/static/chunks/3ds9c0d2ysck3.js — 200 — 72.1 KiB — 2.0 s — h3https://webscore.now/_next/static/chunks/1rrmt015nuxag.js/_next/static/chunks/1rrmt015nuxag.... https://webscore.now/_next/static/chunks/1rrmt015nuxag.js — 200 — 8.6 KiB — 1.8 s — h3https://webscore.now/_next/static/chunks/2frd8yvlymooz.js/_next/static/chunks/2frd8yvlymooz.... https://webscore.now/_next/static/chunks/2frd8yvlymooz.js — 200 — 27.4 KiB — 2.0 s — h3https://webscore.now/_next/static/chunks/turbopack-3s0vt3pyf_omn.js/_next/static/chunks/turbopack-3s0v... https://webscore.now/_next/static/chunks/turbopack-3s0vt3pyf_omn.js — 200 — 5.4 KiB — 1.3 s — h3https://webscore.now/_next/static/chunks/2n4_6e6rkgtzo.js/_next/static/chunks/2n4_6e6rkgtzo.... https://webscore.now/_next/static/chunks/2n4_6e6rkgtzo.js — 200 — 8.1 KiB — 2.1 s — h3https://webscore.now/_next/static/chunks/0ktt67b7xgxa4.js/_next/static/chunks/0ktt67b7xgxa4.... https://webscore.now/_next/static/chunks/0ktt67b7xgxa4.js — 200 — 7.8 KiB — 1.3 s — h3https://webscore.now/_next/static/chunks/0pyt-xq-qp7o8.js/_next/static/chunks/0pyt-xq-qp7o8.... https://webscore.now/_next/static/chunks/0pyt-xq-qp7o8.js — 200 — 9.8 KiB — 1.9 s — h3https://webscore.now/_next/static/chunks/0c934zwmw2ase.js/_next/static/chunks/0c934zwmw2ase.... https://webscore.now/_next/static/chunks/0c934zwmw2ase.js — 200 — 11.8 KiB — 1.9 s — h3https://webscore.now/_next/static/chunks/2-9rt945pl3cn.js/_next/static/chunks/2-9rt945pl3cn.... https://webscore.now/_next/static/chunks/2-9rt945pl3cn.js — 200 — 10.8 KiB — 1.9 s — h3https://webscore.now/_next/static/chunks/2btrh8jhq-49l.js/_next/static/chunks/2btrh8jhq-49l.... https://webscore.now/_next/static/chunks/2btrh8jhq-49l.js — 200 — 20.9 KiB — 1.9 s — h3https://webscore.now/_next/static/chunks/11o8z1dmxeqzj.js/_next/static/chunks/11o8z1dmxeqzj.... https://webscore.now/_next/static/chunks/11o8z1dmxeqzj.js — 200 — 4.6 KiB — 1.8 s — h3https://webscore.now/_next/static/chunks/088kvmuxdhiu9.js/_next/static/chunks/088kvmuxdhiu9.... https://webscore.now/_next/static/chunks/088kvmuxdhiu9.js — 200 — 9.1 KiB — 1.7 s — h3https://webscore.now/_next/static/chunks/1qrogihelixv8.js/_next/static/chunks/1qrogihelixv8.... https://webscore.now/_next/static/chunks/1qrogihelixv8.js — 200 — 12.3 KiB — 1.8 s — h3https://webscore.now/_next/static/chunks/21nnpdewk3e_a.js/_next/static/chunks/21nnpdewk3e_a.... https://webscore.now/_next/static/chunks/21nnpdewk3e_a.js — 200 — 6.8 KiB — 978 ms — h3https://webscore.now/_next/static/chunks/0p6-c0q6vp6zy.js/_next/static/chunks/0p6-c0q6vp6zy.... https://webscore.now/_next/static/chunks/0p6-c0q6vp6zy.js — 200 — 13.8 KiB — 1.9 s — h3https://webscore.now/_next/static/chunks/0gwirm9hvyw0c.js/_next/static/chunks/0gwirm9hvyw0c.... https://webscore.now/_next/static/chunks/0gwirm9hvyw0c.js — 200 — 8.1 KiB — 1.7 s — h3https://webscore.now/_next/static/chunks/44xaewm67819g.js/_next/static/chunks/44xaewm67819g.... https://webscore.now/_next/static/chunks/44xaewm67819g.js — 200 — 12.2 KiB — 1.9 s — h3https://webscore.now/site.webmanifest/site.webmanifest https://webscore.now/site.webmanifest — 200 — 1.5 KiB — 221 ms — h2https://webscore.now/api/badge/cml9g051n000c7cl85itoppkn?theme=light&style=score/api/badge/cml9g051n000c7cl85itoppk... https://webscore.now/api/badge/cml9g051n000c7cl85itoppkn?theme=light&style=score — 200 — 1.9 KiB — 844 ms — h3https://lh3.googleusercontent.com/a/ACg8ocIRYcOTSP5hdo5p1FEQTSKzVU4LMqCQt6OOevAH_k86coXFgA=s96-clh3.googleusercontent.com/a/ACg8ocI... https://lh3.googleusercontent.com/a/ACg8ocIRYcOTSP5hdo5p1FEQTSKzVU4LMqCQt6OOevAH_k86coXFgA=s96-c — 200 — 1.4 KiB — 309 ms — h2https://lh3.googleusercontent.com/a/ACg8ocLzRFcRannMI9RxNRs3WLc02wHAxVSzkCMagkos9RJqtAriIw=s96-clh3.googleusercontent.com/a/ACg8ocL... https://lh3.googleusercontent.com/a/ACg8ocLzRFcRannMI9RxNRs3WLc02wHAxVSzkCMagkos9RJqtAriIw=s96-c — 200 — 1.7 KiB — 282 ms — h2https://lh3.googleusercontent.com/a/ACg8ocKMQkAuXsPGsI8qw3dtqg9nnEWnijdpm39bc1FjgbU3D27H=s96-clh3.googleusercontent.com/a/ACg8ocK... https://lh3.googleusercontent.com/a/ACg8ocKMQkAuXsPGsI8qw3dtqg9nnEWnijdpm39bc1FjgbU3D27H=s96-c — 200 — 1.4 KiB — 284 ms — h2https://lh3.googleusercontent.com/a/ACg8ocJgVBWARzIEniSZ6_bnjIavj7u0O0o77tbvtFbcqnXeIOVNLNg=s96-clh3.googleusercontent.com/a/ACg8ocJ... https://lh3.googleusercontent.com/a/ACg8ocJgVBWARzIEniSZ6_bnjIavj7u0O0o77tbvtFbcqnXeIOVNLNg=s96-c — 200 — 14.6 KiB — 734 ms — h2https://lh3.googleusercontent.com/a/ACg8ocK-m0WPQjKtIp4zad8zaR6fNsYUW0TU3pyIJfDDX02z39eoqfhG=s96-clh3.googleusercontent.com/a/ACg8ocK... https://lh3.googleusercontent.com/a/ACg8ocK-m0WPQjKtIp4zad8zaR6fNsYUW0TU3pyIJfDDX02z39eoqfhG=s96-c — 200 — 3.5 KiB — 798 ms — h2https://lh3.googleusercontent.com/a/ACg8ocJMr-YEGi4Eo68Aa73z5ZdjOr2CTu4frptVs3pJrUzij5IQyoY=s96-clh3.googleusercontent.com/a/ACg8ocJ... https://lh3.googleusercontent.com/a/ACg8ocJMr-YEGi4Eo68Aa73z5ZdjOr2CTu4frptVs3pJrUzij5IQyoY=s96-c — 200 — 2.5 KiB — 612 ms — h2https://webscore.now/badges/uneed-potd.webp/badges/uneed-potd.webp https://webscore.now/badges/uneed-potd.webp — 200 — 18.6 KiB — 1.3 s — h3https://webscore.now/api/og?src=https%3A%2F%2Fapi.producthunt.com%2Fwidgets%2Fembed-image%2Fv1%2Fproduct_review.svg%3Fproduct_id%3D1263337%26theme%3Ddark/api/og?src=https%3A%2F%2Fapi.produ... https://webscore.now/api/og?src=https%3A%2F%2Fapi.producthunt.com%2Fwidgets%2Fembed-image%2Fv1%2Fproduct_review.svg%3Fproduct_id%3D1263337%26theme%3Ddark — 200 — 2.1 KiB — 1.5 s — h3https://dqy38fnwh4fqs.cloudfront.net/UHNN7N7L8AQMMLGFN6DJRKLOD8EA/hnn7n7l8aqmmlgfn6djrklod8ea-5157-profile.webpdqy38fnwh4fqs.cloudfront.net/UHNN7N... https://dqy38fnwh4fqs.cloudfront.net/UHNN7N7L8AQMMLGFN6DJRKLOD8EA/hnn7n7l8aqmmlgfn6djrklod8ea-5157-profile.webp — 200 — 8.7 KiB — 68 ms — h2https://www.google.com/s2/favicons?domain=kreato.space&sz=64www.google.com/s2/favicons?domain=k... https://www.google.com/s2/favicons?domain=kreato.space&sz=64 — 301 — 18 B — 66 ms — h3https://www.google.com/s2/favicons?domain=gdprfix.eu&sz=64www.google.com/s2/favicons?domain=g... https://www.google.com/s2/favicons?domain=gdprfix.eu&sz=64 — 301 — 18 B — 66 ms — h3https://www.google.com/s2/favicons?domain=sincronflow.tech&sz=64www.google.com/s2/favicons?domain=s... https://www.google.com/s2/favicons?domain=sincronflow.tech&sz=64 — 301 — 18 B — 66 ms — h3https://lh3.googleusercontent.com/a/ACg8ocLIzTRf07g4Gu8G9brHKTeS9WuTXmLFsHKWRvufmkmLBss2RUxU=s96-clh3.googleusercontent.com/a/ACg8ocL... https://lh3.googleusercontent.com/a/ACg8ocLIzTRf07g4Gu8G9brHKTeS9WuTXmLFsHKWRvufmkmLBss2RUxU=s96-c — 200 — 6.6 KiB — 568 ms — h2https://lh3.googleusercontent.com/a/ACg8ocLFiejDTF_UrzlQyhmA0VLlMu2ASyI3_wowSWp4a1l6PpXU5mQa=s96-clh3.googleusercontent.com/a/ACg8ocL... https://lh3.googleusercontent.com/a/ACg8ocLFiejDTF_UrzlQyhmA0VLlMu2ASyI3_wowSWp4a1l6PpXU5mQa=s96-c — 200 — 14.8 KiB — 743 ms — h2https://www.google.com/s2/favicons?domain=pantazisoft.com&sz=64www.google.com/s2/favicons?domain=p... https://www.google.com/s2/favicons?domain=pantazisoft.com&sz=64 — 301 — 18 B — 10 ms — h3https://www.google.com/s2/favicons?domain=pura-vida-forest-home.com&sz=64www.google.com/s2/favicons?domain=p... https://www.google.com/s2/favicons?domain=pura-vida-forest-home.com&sz=64 — 301 — 18 B — 13 ms — h3https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://kreato.space&size=64t3.gstatic.com/faviconV2?client=SOC... https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://kreato.space&size=64 — 200 — 1.6 KiB — 60 ms — h2https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://sincronflow.tech&size=64t3.gstatic.com/faviconV2?client=SOC... https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://sincronflow.tech&size=64 — 200 — 715 B — 62 ms — h2https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://gdprfix.eu&size=64t3.gstatic.com/faviconV2?client=SOC... https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://gdprfix.eu&size=64 — 200 — 892 B — 57 ms — h2https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://pantazisoft.com&size=64t1.gstatic.com/faviconV2?client=SOC... https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://pantazisoft.com&size=64 — 200 — 811 B — 55 ms — h2https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://pura-vida-forest-home.com&size=64t3.gstatic.com/faviconV2?client=SOC... https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://pura-vida-forest-home.com&size=64 — 200 — 1.8 KiB — 41 ms — h2https://static.cloudflareinsights.com/beacon.min.js/v4513226cdae34746b4dedf0b4dfa099e1781791509496static.cloudflareinsights.com/beaco... https://static.cloudflareinsights.com/beacon.min.js/v4513226cdae34746b4dedf0b4dfa099e1781791509496 — -1 — 0 B — 0 ms — https://webscore.now/api/promotion/api/promotion https://webscore.now/api/promotion — 200 — 1.3 KiB — 836 ms — h3https://webscore.now/api/auth/session/api/auth/session https://webscore.now/api/auth/session — 200 — 1.3 KiB — 843 ms — h3https://webscore.now/sign-up?_rsc=5CB68i4pnAekjehf/sign-up?_rsc=5CB68i4pnAekjehf https://webscore.now/sign-up?_rsc=5CB68i4pnAekjehf — 200 — 1.5 KiB — 1.4 s — h3https://webscore.now/tools/image-converter?_rsc=5CB68i4pnAekjehf/tools/image-converter?_rsc=5CB68i4... https://webscore.now/tools/image-converter?_rsc=5CB68i4pnAekjehf — 200 — 1.5 KiB — 849 ms — h3https://webscore.now/?_rsc=tXyZJ52UQVBCVsD3/?_rsc=tXyZJ52UQVBCVsD3 https://webscore.now/?_rsc=tXyZJ52UQVBCVsD3 — 200 — 2.9 KiB — 858 ms — h3https://webscore.now/favicon.svg/favicon.svg https://webscore.now/favicon.svg — 200 — 1.6 KiB — 2.5 s — h3https://www.googletagmanager.com/gtag/js?id=G-R74VF7Z44Vwww.googletagmanager.com/gtag/js?id... https://www.googletagmanager.com/gtag/js?id=G-R74VF7Z44V — 200 — 166.1 KiB — 42 ms — h2https://webscore.now/api/auth/session/api/auth/session https://webscore.now/api/auth/session — 200 — 1.3 KiB — 786 ms — h3https://webscore.now/tools/image-converter?_rsc=tXyZJ52UQVBCVsD3/tools/image-converter?_rsc=tXyZJ52... https://webscore.now/tools/image-converter?_rsc=tXyZJ52UQVBCVsD3 — 200 — 3.0 KiB — 862 ms — h3https://analytics.ahrefs.com/analytics.jsanalytics.ahrefs.com/analytics.js https://analytics.ahrefs.com/analytics.js — 200 — 3.0 KiB — 26 ms — h3https://repora.ro/beacon.jsrepora.ro/beacon.js https://repora.ro/beacon.js — 200 — 4.1 KiB — 467 ms — h2https://analytics.ahrefs.com/api/eventanalytics.ahrefs.com/api/event https://analytics.ahrefs.com/api/event — 200 — 308 B — 29 ms — h3https://www.google-analytics.com/g/collect?v=2&tid=G-R74VF7Z44V&gtm=45je6852h1v9243421817za200zd9243421817&_p=1786289627009&gcs=G101&gcd=13p3t3p3p7l1&npa=1&dma_cps=-&dma=0&are=1&cid=57338887.1786289627&frm=0&ngs=1&pscdl=denied&rcb=3&sr=412x823&uaa=&uab=64&uafvl=Not-A.Brand%3B24.0.0.0%7CChromium%3B146.0.7680.164&uam=moto%20g%20power%20(2022)&uamb=1&uap=Android&uapv=11.0&uaw=0&ul=en-us&_s=1&tag_exp=115938466~115938468~118395334~118897920~118897930~119367802~119367810~119527020~119896802~120315583~120385422&sid=1786289627&sct=1&seg=0&dl=https%3A%2F%2Fwebscore.now%2F&dt=WebScore%20%E2%80%94%20Free%20Website%20Scanner%20%26%20Checker&_tu=QAg&en=page_view&_fv=1&_nsi=1&_ss=1&_ee=1&tfd=6080www.google-analytics.com/g/collect?... https://www.google-analytics.com/g/collect?v=2&tid=G-R74VF7Z44V&gtm=45je6852h1v9243421817za200zd9243421817&_p=1786289627009&gcs=G101&gcd=13p3t3p3p7l1&npa=1&dma_cps=-&dma=0&are=1&cid=57338887.1786289627&frm=0&ngs=1&pscdl=denied&rcb=3&sr=412x823&uaa=&uab=64&uafvl=Not-A.Brand%3B24.0.0.0%7CChromium%3B146.0.7680.164&uam=moto%20g%20power%20(2022)&uamb=1&uap=Android&uapv=11.0&uaw=0&ul=en-us&_s=1&tag_exp=115938466~115938468~118395334~118897920~118897930~119367802~119367810~119527020~119896802~120315583~120385422&sid=1786289627&sct=1&seg=0&dl=https%3A%2F%2Fwebscore.now%2F&dt=WebScore%20%E2%80%94%20Free%20Website%20Scanner%20%26%20Checker&_tu=QAg&en=page_view&_fv=1&_nsi=1&_ss=1&_ee=1&tfd=6080 — 204 — 548 B — 36 ms — h2https://webscore.now/sign-up?_rsc=7h4NYy5eoyMcNlUN/sign-up?_rsc=7h4NYy5eoyMcNlUN https://webscore.now/sign-up?_rsc=7h4NYy5eoyMcNlUN — 200 — 2.7 KiB — 1.0 s — h3https://webscore.now/sign-up?_rsc=yIp22O3xgPPxC28X/sign-up?_rsc=yIp22O3xgPPxC28X https://webscore.now/sign-up?_rsc=yIp22O3xgPPxC28X — 200 — 4.0 KiB — 1.0 s — h3https://webscore.now/sign-up?_rsc=fGJn87jYv0bW619I/sign-up?_rsc=fGJn87jYv0bW619I https://webscore.now/sign-up?_rsc=fGJn87jYv0bW619I — 200 — 3.4 KiB — 722 ms — h3https://repora.ro/api/collectrepora.ro/api/collect https://repora.ro/api/collect — 200 — 0 B — 3.7 s — h3https://repora.ro/api/realtime/pingrepora.ro/api/realtime/ping https://repora.ro/api/realtime/ping — 200 — 0 B — 3.2 s — h3https://webscore.now/sign-up?_rsc=6JBSFWK76aOszvHd/sign-up?_rsc=6JBSFWK76aOszvHd https://webscore.now/sign-up?_rsc=6JBSFWK76aOszvHd — 200 — 1.6 KiB — 813 ms — h3https://webscore.now/_next/static/chunks/31svn505i3z9i.js/_next/static/chunks/31svn505i3z9i.... https://webscore.now/_next/static/chunks/31svn505i3z9i.js — 200 — 5.7 KiB — 1.3 s — h3https://webscore.now/sign-up?_rsc=MzA2M6cCftvkn6rb/sign-up?_rsc=MzA2M6cCftvkn6rb https://webscore.now/sign-up?_rsc=MzA2M6cCftvkn6rb — 200 — 1.9 KiB — 1.0 s — h3https://webscore.now/_next/static/chunks/1-p6t88e93v5s.js/_next/static/chunks/1-p6t88e93v5s.... https://webscore.now/_next/static/chunks/1-p6t88e93v5s.js — 200 — 4.0 KiB — 1.9 s — h3https://webscore.now/_next/static/chunks/1vmqos3hli90c.js/_next/static/chunks/1vmqos3hli90c.... https://webscore.now/_next/static/chunks/1vmqos3hli90c.js — 200 — 74.6 KiB — 1.5 s — h3
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Third-Party Script Cost
Per-script blocking time, transfer cost, and cache headers
INFO
3% of JavaScript execution is third-party
First-party Third-party 454ms · 166KB · €8/mo
Google Tag Manager
Tag Manager
Costly
Execution 454ms
Transfer 166 KB
Unused 42%
Monthly Cost €8/mo

These scripts may cost more than they're worth

  • Google Tag Manager adds 454ms and costs ~€8/month

Google Tag Manager takes 454ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.

Why this matters

This script has high main-thread execution time — optimize hot paths or defer.

Source: web.dev

How third-party costs are calculated

Image Optimization
100 images, 81 KB total, 56 KB wasted
INFO

Image Optimization Audit

Total Images

100

Total Size

81 KB

Oversized

15

Wasted

56 KB

7 missing dimensions 4 missing lazy loading
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback