Performance Overall performance score (0–100) based on Core Web Vitals and other metrics. 90+ is good.
79
Accessibility Measures how accessible the page is for users with disabilities. Checks color contrast, ARIA labels, and semantic HTML.
100
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.
1.59 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
1.88 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
0 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.461
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
1.79 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.
1.88 s
Page Load Progression
375 ms
750 ms
1.1 s
1.5 s
1.9 s
2.2 s
2.6 s
3.0 s
Checks
22
13 PASS5 REVIEW1 FIX
D
HTTP Caching
Action
no-store (uncacheable)
FIX
no-store (uncacheable)
Info::
i
Cache-Control: no-store prevents all caching
Intentional for dynamic content, but increases server load for every page view.
Got: no-store, no-cache, must-revalidate
Info::
i
No ETag or Last-Modified header
Conditional requests (304 Not Modified) are not possible without validators.
Cache-Control
no-store, no-cache, must-revalidate
Directive
Value
Meaning
no-store
—
Never cache this response
no-cache
—
Cache but always revalidate first
must-revalidate
—
Must recheck with server after expiry
C
Page Weight Budget
Action
1.9 MB transferred, 52 requests
REVIEW
1.9 MB transferred, 52 requests
Info::
i
Page weighs 3.7 MB (1.9 MB transferred)
Warning::
!
Images are 1.2 MB — compress or use modern formats
Convert images to WebP/AVIF and resize to display dimensions to reduce transfer size.
Got: 1.2 MB
Warning::
!
JavaScript is 512 KB — consider code splitting or lazy loading
Large JavaScript bundles delay interactivity. Split code by route or defer non-critical scripts.
Got: 512 KB
Info::
i
52 HTTP requests
Info::
i
Estimated 0.40 g CO2 per page load
1.9 MBtransferred
52 requests
0.40 g CO2 per page load
Images1.2 MiB64%
JavaScript511.8 KiB26%
Fonts141.9 KiB7%
CSS42.5 KiB2%
HTML5.5 KiB0%
Other4.7 KiB0%
Other46 B0%
02.4 MB4.9 MB
Approaching limit
Convert images to WebP/AVIF and resize to display dimensions to reduce transfer size.
Why this matters
Image bandwidth is high — modern formats (WebP/AVIF) and resizing typically cut it 50%+.
Source: web.dev
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
C
Image Optimization
Action
7 images, 0 KB saveable
REVIEW
7 images, 0 KB saveable
Warning::
!
https://koloseum.com.pl/assets/images/app/banners/... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
!
https://koloseum.com.pl/assets/images/app/banners/... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
!
https://koloseum.com.pl/assets/images/app/logo.svg is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
!
https://koloseum.com.pl/assets/images/app/banners/... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
7images1.2 MB
0oversized-0 KB
6legacy format
4missing dimensionsCLS risk
Set explicit width and height to prevent CLS.
Why this matters
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.
Why this matters
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.
Why this matters
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.
Why this matters
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
B
Server-Timing Observability
No Server-Timing header found
REVIEW
No Server-Timing header found
Info::
i
No Server-Timing header found
Server-Timing exposes backend timing breakdowns to browser DevTools (e.g., `db: 45ms; render: 120ms; cache: 2ms`). Useful for diagnosing slow pages without backend log access. Most modern frameworks (Next.js, Cloudflare Workers, Fastly) emit it automatically; absence on a managed platform usually means telemetry headers are stripped at the edge.
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
No optimization needed
PASS
No optimization needed
Info::
✓
No resource hint issues
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
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::
i
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.
Network Waterfall
52 requests over 2438ms
INFO
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Real-User Performance (CrUX)
Field metrics from the Chrome User Experience Report
INFO
Chrome User Experience (CrUX)
Real-user metrics from the Chrome UX Report (2026-08-02 — 2026-08-29)
LCP (p75)
1641 ms
83% good
INP (p75)
84 ms
97% good
CLS (p75)
0.180
74% good
FCP (p75)
1154 ms
TTFB (p75)
775 ms
Image Optimization
4 images, 268 KB total, 70 KB wasted
INFO
Image Optimization Audit
Total Images
4
Total Size
268 KB
Oversized
1
Wasted
70 KB
4 missing dimensions3 missing lazy loading
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.