Skip to content
https://burj-almubdia.com

Performance

· 25 checks — Lighthouse + waterfall + sustainability rolled into one auditable list.
SCORE
92
GRADE
A
FIX
1
REVIEW
6
PASS
16
INFO
2

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

83
Performance Overall performance score (0–100) based on Core Web Vitals and other metrics. 90+ is good.
90
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.
100
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.45 s

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

4.19 s

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

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

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

4.19 s

Page Load Progression

483 ms
965 ms
1.4 s
1.9 s
2.4 s
2.9 s
3.4 s
3.9 s
Checks
25
16 PASS 6 REVIEW 1 FIX
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
C
JS Execution Cost
Action
1349ms total JS execution
REVIEW
1349ms total JS execution
Warning::
https://burj-almubdia.com/: 789ms CPU time
Warning::
Unattributable: 386ms CPU time
Info::
https://burj-almubdia.com/_next/static/chunks/08c7...: 174ms CPU time

Main Thread Breakdown

Style & Layout 39% Other 32% Script Evaluation 14% Script Parsing & Compilation 8% Parse HTML & CSS 3%
ScriptTotalScriptingParse/CompileParty
https://burj-almubdia.com/789ms14ms1ms1st
Unattributable386ms6ms0ms1st
https://burj-almubdia.com/_next/static/chunks/08c7277ny3zun.js174ms155ms13ms1st
C
JS Bundles
Action
15 scripts, 159 KB unused
REVIEW
15 scripts, 159 KB unused
Warning::
https://burj-almubdia.com/_next/static/chunks/01ia...: 60 KB unused (86%)
Consider code splitting or tree shaking to reduce unused code.
Warning::
https://burj-almubdia.com/_next/static/chunks/0vok...: 38 KB unused (100%)
Consider code splitting or tree shaking to reduce unused code.
Warning::
https://burj-almubdia.com/_next/static/chunks/11be...: 35 KB unused (100%)
Consider code splitting or tree shaking to reduce unused code.
Warning::
https://burj-almubdia.com/_next/static/chunks/08c7...: 27 KB unused (73%)
Consider code splitting or tree shaking to reduce unused code.
Info::
Total unused JavaScript: 159 KB
159 KB unused JavaScript

Downloaded but never executed on this page.

ScriptSizeUnusedMinifiedParty
https://burj-almubdia.com/_next/static/chunks/01iahevbqhpzt.js69 KB60 KB (86%)1st
https://burj-almubdia.com/_next/static/chunks/0vokiadnpqopv.js38 KB38 KB (100%)1st
https://burj-almubdia.com/_next/static/chunks/11be7t2ypx4a8.js35 KB35 KB (100%)1st
https://burj-almubdia.com/_next/static/chunks/08c7277ny3zun.js37 KB27 KB (73%)1st
https://burj-almubdia.com/_next/static/chunks/07f6v-a0-9bws.js6 KB1st
https://burj-almubdia.com/_next/static/chunks/turbopack-24iogg8nbo0i9.js4 KB1st
https://burj-almubdia.com/_next/static/chunks/2zjueh7t2vecu.js2 KB1st
https://burj-almubdia.com/_next/static/chunks/14mrh2-p_w84d.js13 KB1st
https://burj-almubdia.com/_next/static/chunks/2p7z3hxv4n75_.js9 KB1st
https://burj-almubdia.com/_next/static/chunks/3g5z1j2x5t36y.js1 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

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
HTTP/3 (QUIC)
HTTP/3 not advertised
REVIEW
HTTP/3 not advertised
Info::
HTTP/3 (QUIC) is not advertised
HTTP/3 isn't advertised via Alt-Svc and the worker didn't negotiate h3. HTTP/3 reduces handshake latency (1-RTT instead of 2-3 RTTs) and is more resilient on lossy connections. Most modern CDNs (Cloudflare, Fastly, AWS CloudFront, Google Cloud CDN) support HTTP/3 with a single config switch -- consider enabling for mobile-heavy workloads.
B
Compression Algorithm
Main response uses gzip; brotli would be ~20% smaller
REVIEW
Main response uses gzip; brotli would be ~20% smaller
Info::
Main HTML response uses gzip (brotli would be ~20% smaller)
All current browsers support brotli. Most CDNs (Cloudflare, Fastly, AWS CloudFront, Vercel, Netlify) can switch from gzip to brotli with a single config flag. Origin servers (nginx, Apache) need a brotli module compiled in -- nginx-brotli or Apache mod_brotli.
B
Server-Timing Observability
No Server-Timing header found
REVIEW
No Server-Timing header found
Info::
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.
C
Green Hosting
Action
Whether the site is served from green-energy infrastructure
REVIEW

Green Hosting

No green hosting detected

A+
Page Weight Budget
501 KB transferred, 36 requests
PASS
501 KB transferred, 36 requests
Info::
Page weighs 1.3 MB (501 KB transferred)
Info::
36 HTTP requests
Info::
Estimated 0.10 g CO2 per page load
501 KB / 2.4 MB budget
501 KB transferred
36 requests
0.10 g CO2 per page load
JavaScript 246.2 KiB 49%
Images 106.6 KiB 21%
Fonts 101.7 KiB 20%
CSS 24.8 KiB 5%
HTML 17.1 KiB 3%
Other 3.5 KiB 1%
Other 946 B 0%
0 2.4 MB 4.9 MB
Under budget
A
Third-Party Impact
21% third-party, 0 ms blocking
PASS
21% third-party, 0 ms blocking
Info::
Third-party code accounts for 21% of page weight (106.6 KiB of 500.9 KiB)
Info::
Third-party blocking time is low (0 ms)
79%
21%
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+
Image Optimization
4 images, 0 KB saveable
PASS
4 images, 0 KB saveable
Info::
All images are well-optimized
4 images 107 KB
0 oversized -0 KB
0 legacy format
0 missing dimensions CLS risk
A+
Font Loading
11 fonts (102 KB)
PASS
11 fonts (102 KB)
Info::
11 font(s) use font-display: swap (FOUT risk but functional)

Web fonts

11

102 KB total

Render-blocking

0

of 11

Dominant font-display

swap

Most common across fonts

Font loading timeline
Transfer FOIT (block) FOUT (swap)
0 ms 1.0 s 2.0 s 3.0 s 4.0 s FCP 1.5 s LCP 4.2 shttps://burj-almubdia.com/_next/static/media/48e6fa8a5baca31f-s.p.14yttwb5hb7vt.woff248e6fa8a5baca31f-s.p.14... https://burj-almubdia.com/_next/static/media/48e6fa8a5baca31f-s.p.14yttwb5hb7vt.woff2 — 9.0 KiB — 261 ms — font-display: swaphttps://burj-almubdia.com/_next/static/media/4b676bcffc00356a-s.p.24y4-vc3jpn8m.woff24b676bcffc00356a-s.p.24... https://burj-almubdia.com/_next/static/media/4b676bcffc00356a-s.p.24y4-vc3jpn8m.woff2 — 8.8 KiB — 171 ms — font-display: swaphttps://burj-almubdia.com/_next/static/media/7ca057cce9853046-s.p.0i035u9dx55k8.woff27ca057cce9853046-s.p.0i... https://burj-almubdia.com/_next/static/media/7ca057cce9853046-s.p.0i035u9dx55k8.woff2 — 8.2 KiB — 164 ms — font-display: swaphttps://burj-almubdia.com/_next/static/media/80c3108817f102b0-s.p.2sj2lzsmxnb-e.woff280c3108817f102b0-s.p.2s... https://burj-almubdia.com/_next/static/media/80c3108817f102b0-s.p.2sj2lzsmxnb-e.woff2 — 8.6 KiB — 236 ms — font-display: swaphttps://burj-almubdia.com/_next/static/media/d078e09ad8bf17e2-s.p.2kyr8q1ujkbhr.woff2d078e09ad8bf17e2-s.p.2k... https://burj-almubdia.com/_next/static/media/d078e09ad8bf17e2-s.p.2kyr8q1ujkbhr.woff2 — 8.9 KiB — 152 ms — font-display: swaphttps://burj-almubdia.com/_next/static/media/d54db18e8cd5f74f-s.p.0ji0xjltb6ro5.woff2d54db18e8cd5f74f-s.p.0j... https://burj-almubdia.com/_next/static/media/d54db18e8cd5f74f-s.p.0ji0xjltb6ro5.woff2 — 8.8 KiB — 140 ms — font-display: swaphttps://burj-almubdia.com/_next/static/media/e9f32d51db34fd0c-s.p.3dvstry878_5j.woff2e9f32d51db34fd0c-s.p.3d... https://burj-almubdia.com/_next/static/media/e9f32d51db34fd0c-s.p.3dvstry878_5j.woff2 — 9.4 KiB — 134 ms — font-display: swaphttps://burj-almubdia.com/_next/static/media/1d2cc0c079997359-s.44lktk7jzy0s-.woff21d2cc0c079997359-s.44lk... https://burj-almubdia.com/_next/static/media/1d2cc0c079997359-s.44lktk7jzy0s-.woff2 — 10.1 KiB — 133 ms — font-display: swaphttps://burj-almubdia.com/_next/static/media/e7b64a7fde1a3d32-s.2g2pkky1i4_-n.woff2e7b64a7fde1a3d32-s.2g2p... https://burj-almubdia.com/_next/static/media/e7b64a7fde1a3d32-s.2g2pkky1i4_-n.woff2 — 9.9 KiB — 128 ms — font-display: swaphttps://burj-almubdia.com/_next/static/media/3a179c97f46f8d27-s.43x0y28f52kqu.woff23a179c97f46f8d27-s.43x0... https://burj-almubdia.com/_next/static/media/3a179c97f46f8d27-s.43x0y28f52kqu.woff2 — 10.1 KiB — 123 ms — font-display: swaphttps://burj-almubdia.com/_next/static/media/f0e0669539caf32a-s.2cslzs_83-cos.woff2f0e0669539caf32a-s.2csl... https://burj-almubdia.com/_next/static/media/f0e0669539caf32a-s.2cslzs_83-cos.woff2 — 9.8 KiB — 123 ms — font-display: swap
48e6fa8a5baca31f-s.p.14... woff2 swap
Size 9 KB
Load time 261 ms
Start 828 ms
Risk FOUT — text flashes from fallback to web font
4b676bcffc00356a-s.p.24... woff2 swap
Size 9 KB
Load time 171 ms
Start 829 ms
Risk FOUT — text flashes from fallback to web font
7ca057cce9853046-s.p.0i... woff2 swap
Size 8 KB
Load time 164 ms
Start 829 ms
Risk FOUT — text flashes from fallback to web font
80c3108817f102b0-s.p.2s... woff2 swap
Size 9 KB
Load time 236 ms
Start 830 ms
Risk FOUT — text flashes from fallback to web font
d078e09ad8bf17e2-s.p.2k... woff2 swap
Size 9 KB
Load time 152 ms
Start 830 ms
Risk FOUT — text flashes from fallback to web font
d54db18e8cd5f74f-s.p.0j... woff2 swap
Size 9 KB
Load time 140 ms
Start 830 ms
Risk FOUT — text flashes from fallback to web font
e9f32d51db34fd0c-s.p.3d... woff2 swap
Size 9 KB
Load time 134 ms
Start 830 ms
Risk FOUT — text flashes from fallback to web font
1d2cc0c079997359-s.44lk... woff2 swap
Size 10 KB
Load time 133 ms
Start 1.2 s
Risk FOUT — text flashes from fallback to web font
e7b64a7fde1a3d32-s.2g2p... woff2 swap
Size 10 KB
Load time 128 ms
Start 1.2 s
Risk FOUT — text flashes from fallback to web font
3a179c97f46f8d27-s.43x0... woff2 swap
Size 10 KB
Load time 123 ms
Start 1.2 s
Risk FOUT — text flashes from fallback to web font
f0e0669539caf32a-s.2csl... woff2 swap
Size 10 KB
Load time 123 ms
Start 1.2 s
Risk FOUT — text flashes from fallback to web font
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 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
1 hints, 0 missing preconnects
PASS
1 hints, 0 missing preconnects
Info::
Page uses 1 resource hint(s)

Current Resource Hints

preconnect
preload
1
dns-prefetch
prefetch

1 resource hints configured

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 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
36 resources · 501 KB · 159 KB savings available
PASS
36 resources · 501 KB · 159 KB savings available
Info::
Within 1MB page-weight target
Got: 501 KB
Info::
~159 KB of savings available
Info::
4 third-party resources (21% of weight)
36 resources · 500.9 KiB · 4 third-party Within 1MB page-weight target
JavaScript 49% · 246.2 KiB
Image 22% · 110.1 KiB
Font 20% · 101.7 KiB
CSS 5% · 24.8 KiB
Document 3% · 17.1 KiB
Other 0% · 946 B

~159.5 KiB of savings available

Remove unused JavaScript: 159.5 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
JavaScript Blocking
1 JS blocking issue(s) detected
PASS
1 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.
A+
CSS Performance Depth
No CSS performance depth issues detected
PASS
No CSS performance depth issues detected
Info::
No CSS performance depth issues detected
Network Waterfall
36 requests over 1553ms
INFO
0 ms 1.0 s 2.0 s 3.0 s 4.0 s FCP 1.5 s LCP 4.2 shttps://burj-almubdia.com// https://burj-almubdia.com/ — 200 — 17.1 KiB — 815 ms — h2https://burj-almubdia.com/_next/static/media/48e6fa8a5baca31f-s.p.14yttwb5hb7vt.woff2/_next/static/media/48e6fa8a5baca31... https://burj-almubdia.com/_next/static/media/48e6fa8a5baca31f-s.p.14yttwb5hb7vt.woff2 — 200 — 9.0 KiB — 261 ms — h2https://burj-almubdia.com/_next/static/media/4b676bcffc00356a-s.p.24y4-vc3jpn8m.woff2/_next/static/media/4b676bcffc00356... https://burj-almubdia.com/_next/static/media/4b676bcffc00356a-s.p.24y4-vc3jpn8m.woff2 — 200 — 8.8 KiB — 171 ms — h2https://burj-almubdia.com/_next/static/media/7ca057cce9853046-s.p.0i035u9dx55k8.woff2/_next/static/media/7ca057cce985304... https://burj-almubdia.com/_next/static/media/7ca057cce9853046-s.p.0i035u9dx55k8.woff2 — 200 — 8.2 KiB — 164 ms — h2https://burj-almubdia.com/_next/static/media/80c3108817f102b0-s.p.2sj2lzsmxnb-e.woff2/_next/static/media/80c3108817f102b... https://burj-almubdia.com/_next/static/media/80c3108817f102b0-s.p.2sj2lzsmxnb-e.woff2 — 200 — 8.6 KiB — 236 ms — h2https://burj-almubdia.com/_next/static/media/d078e09ad8bf17e2-s.p.2kyr8q1ujkbhr.woff2/_next/static/media/d078e09ad8bf17e... https://burj-almubdia.com/_next/static/media/d078e09ad8bf17e2-s.p.2kyr8q1ujkbhr.woff2 — 200 — 8.9 KiB — 152 ms — h2https://burj-almubdia.com/_next/static/media/d54db18e8cd5f74f-s.p.0ji0xjltb6ro5.woff2/_next/static/media/d54db18e8cd5f74... https://burj-almubdia.com/_next/static/media/d54db18e8cd5f74f-s.p.0ji0xjltb6ro5.woff2 — 200 — 8.8 KiB — 140 ms — h2https://burj-almubdia.com/_next/static/media/e9f32d51db34fd0c-s.p.3dvstry878_5j.woff2/_next/static/media/e9f32d51db34fd0... https://burj-almubdia.com/_next/static/media/e9f32d51db34fd0c-s.p.3dvstry878_5j.woff2 — 200 — 9.4 KiB — 134 ms — h2https://burj-almubdia.com/_next/static/chunks/21oroad2xh3g9.css/_next/static/chunks/21oroad2xh3g9.... https://burj-almubdia.com/_next/static/chunks/21oroad2xh3g9.css — 200 — 1.1 KiB — 227 ms — h2https://burj-almubdia.com/_next/static/chunks/04ncnj2usq90t.css/_next/static/chunks/04ncnj2usq90t.... https://burj-almubdia.com/_next/static/chunks/04ncnj2usq90t.css — 200 — 21.8 KiB — 176 ms — h2https://burj-almubdia.com/_next/static/chunks/1j_vldtdm5ldl.css/_next/static/chunks/1j_vldtdm5ldl.... https://burj-almubdia.com/_next/static/chunks/1j_vldtdm5ldl.css — 200 — 1.9 KiB — 146 ms — h2https://res.cloudinary.com/dyqkhcuxe/image/upload/v1783646909/banners/mqxbk5vyruwomasgjppe.webpres.cloudinary.com/dyqkhcuxe/image/... https://res.cloudinary.com/dyqkhcuxe/image/upload/v1783646909/banners/mqxbk5vyruwomasgjppe.webp — 200 — 73.2 KiB — 487 ms — h2https://burj-almubdia.com/_next/static/chunks/2zjueh7t2vecu.js/_next/static/chunks/2zjueh7t2vecu.... https://burj-almubdia.com/_next/static/chunks/2zjueh7t2vecu.js — 200 — 2.1 KiB — 160 ms — h2https://burj-almubdia.com/_next/static/chunks/3a3w10hve8x99.js/_next/static/chunks/3a3w10hve8x99.... https://burj-almubdia.com/_next/static/chunks/3a3w10hve8x99.js — 200 — 8.8 KiB — 174 ms — h2https://burj-almubdia.com/_next/static/chunks/01iahevbqhpzt.js/_next/static/chunks/01iahevbqhpzt.... https://burj-almubdia.com/_next/static/chunks/01iahevbqhpzt.js — 200 — 69.5 KiB — 207 ms — h2https://burj-almubdia.com/_next/static/chunks/08c7277ny3zun.js/_next/static/chunks/08c7277ny3zun.... https://burj-almubdia.com/_next/static/chunks/08c7277ny3zun.js — 200 — 36.7 KiB — 233 ms — h2https://burj-almubdia.com/_next/static/chunks/27jktro2p5rq9.js/_next/static/chunks/27jktro2p5rq9.... https://burj-almubdia.com/_next/static/chunks/27jktro2p5rq9.js — 200 — 9.1 KiB — 178 ms — h2https://burj-almubdia.com/_next/static/chunks/turbopack-24iogg8nbo0i9.js/_next/static/chunks/turbopack-24io... https://burj-almubdia.com/_next/static/chunks/turbopack-24iogg8nbo0i9.js — 200 — 4.2 KiB — 172 ms — h2https://burj-almubdia.com/_next/static/chunks/07f6v-a0-9bws.js/_next/static/chunks/07f6v-a0-9bws.... https://burj-almubdia.com/_next/static/chunks/07f6v-a0-9bws.js — 200 — 6.3 KiB — 166 ms — h2https://burj-almubdia.com/_next/static/chunks/14mrh2-p_w84d.js/_next/static/chunks/14mrh2-p_w84d.... https://burj-almubdia.com/_next/static/chunks/14mrh2-p_w84d.js — 200 — 12.7 KiB — 187 ms — h2https://burj-almubdia.com/_next/static/chunks/2p7z3hxv4n75_.js/_next/static/chunks/2p7z3hxv4n75_.... https://burj-almubdia.com/_next/static/chunks/2p7z3hxv4n75_.js — 200 — 9.0 KiB — 166 ms — h2https://burj-almubdia.com/_next/static/chunks/3g5z1j2x5t36y.js/_next/static/chunks/3g5z1j2x5t36y.... https://burj-almubdia.com/_next/static/chunks/3g5z1j2x5t36y.js — 200 — 991 B — 171 ms — h2https://burj-almubdia.com/_next/static/chunks/0vokiadnpqopv.js/_next/static/chunks/0vokiadnpqopv.... https://burj-almubdia.com/_next/static/chunks/0vokiadnpqopv.js — 200 — 38.4 KiB — 189 ms — h2https://burj-almubdia.com/_next/static/chunks/3sfip5agrm4k_.js/_next/static/chunks/3sfip5agrm4k_.... https://burj-almubdia.com/_next/static/chunks/3sfip5agrm4k_.js — 200 — 5.4 KiB — 195 ms — h2https://burj-almubdia.com/_next/static/chunks/11be7t2ypx4a8.js/_next/static/chunks/11be7t2ypx4a8.... https://burj-almubdia.com/_next/static/chunks/11be7t2ypx4a8.js — 200 — 35.0 KiB — 182 ms — h2https://burj-almubdia.com/_next/static/chunks/1attyvbg1trg2.js/_next/static/chunks/1attyvbg1trg2.... https://burj-almubdia.com/_next/static/chunks/1attyvbg1trg2.js — 200 — 2.6 KiB — 165 ms — h2https://burj-almubdia.com/_next/static/chunks/359hmflaa6auq.js/_next/static/chunks/359hmflaa6auq.... https://burj-almubdia.com/_next/static/chunks/359hmflaa6auq.js — 200 — 5.5 KiB — 153 ms — h2https://burj-almubdia.com/site.webmanifest/site.webmanifest https://burj-almubdia.com/site.webmanifest — 200 — 946 B — 183 ms — h2https://res.cloudinary.com/dyqkhcuxe/image/upload/v1775149543/sub-categories/tdwspvgmhddtmgs4aeuk.webpres.cloudinary.com/dyqkhcuxe/image/... https://res.cloudinary.com/dyqkhcuxe/image/upload/v1775149543/sub-categories/tdwspvgmhddtmgs4aeuk.webp — 200 — 10.0 KiB — 173 ms — h2https://res.cloudinary.com/dypfbyxqc/image/upload/v1779764277/products/orange-apple_wktkfo.webpres.cloudinary.com/dypfbyxqc/image/... https://res.cloudinary.com/dypfbyxqc/image/upload/v1779764277/products/orange-apple_wktkfo.webp — 200 — 9.9 KiB — 390 ms — h2
0 ms 1.0 s 2.0 s 3.0 s 4.0 s FCP 1.5 s LCP 4.2 shttps://burj-almubdia.com// https://burj-almubdia.com/ — 200 — 17.1 KiB — 815 ms — h2https://burj-almubdia.com/_next/static/media/48e6fa8a5baca31f-s.p.14yttwb5hb7vt.woff2/_next/static/media/48e6fa8a5baca31... https://burj-almubdia.com/_next/static/media/48e6fa8a5baca31f-s.p.14yttwb5hb7vt.woff2 — 200 — 9.0 KiB — 261 ms — h2https://burj-almubdia.com/_next/static/media/4b676bcffc00356a-s.p.24y4-vc3jpn8m.woff2/_next/static/media/4b676bcffc00356... https://burj-almubdia.com/_next/static/media/4b676bcffc00356a-s.p.24y4-vc3jpn8m.woff2 — 200 — 8.8 KiB — 171 ms — h2https://burj-almubdia.com/_next/static/media/7ca057cce9853046-s.p.0i035u9dx55k8.woff2/_next/static/media/7ca057cce985304... https://burj-almubdia.com/_next/static/media/7ca057cce9853046-s.p.0i035u9dx55k8.woff2 — 200 — 8.2 KiB — 164 ms — h2https://burj-almubdia.com/_next/static/media/80c3108817f102b0-s.p.2sj2lzsmxnb-e.woff2/_next/static/media/80c3108817f102b... https://burj-almubdia.com/_next/static/media/80c3108817f102b0-s.p.2sj2lzsmxnb-e.woff2 — 200 — 8.6 KiB — 236 ms — h2https://burj-almubdia.com/_next/static/media/d078e09ad8bf17e2-s.p.2kyr8q1ujkbhr.woff2/_next/static/media/d078e09ad8bf17e... https://burj-almubdia.com/_next/static/media/d078e09ad8bf17e2-s.p.2kyr8q1ujkbhr.woff2 — 200 — 8.9 KiB — 152 ms — h2https://burj-almubdia.com/_next/static/media/d54db18e8cd5f74f-s.p.0ji0xjltb6ro5.woff2/_next/static/media/d54db18e8cd5f74... https://burj-almubdia.com/_next/static/media/d54db18e8cd5f74f-s.p.0ji0xjltb6ro5.woff2 — 200 — 8.8 KiB — 140 ms — h2https://burj-almubdia.com/_next/static/media/e9f32d51db34fd0c-s.p.3dvstry878_5j.woff2/_next/static/media/e9f32d51db34fd0... https://burj-almubdia.com/_next/static/media/e9f32d51db34fd0c-s.p.3dvstry878_5j.woff2 — 200 — 9.4 KiB — 134 ms — h2https://burj-almubdia.com/_next/static/chunks/21oroad2xh3g9.css/_next/static/chunks/21oroad2xh3g9.... https://burj-almubdia.com/_next/static/chunks/21oroad2xh3g9.css — 200 — 1.1 KiB — 227 ms — h2https://burj-almubdia.com/_next/static/chunks/04ncnj2usq90t.css/_next/static/chunks/04ncnj2usq90t.... https://burj-almubdia.com/_next/static/chunks/04ncnj2usq90t.css — 200 — 21.8 KiB — 176 ms — h2https://burj-almubdia.com/_next/static/chunks/1j_vldtdm5ldl.css/_next/static/chunks/1j_vldtdm5ldl.... https://burj-almubdia.com/_next/static/chunks/1j_vldtdm5ldl.css — 200 — 1.9 KiB — 146 ms — h2https://res.cloudinary.com/dyqkhcuxe/image/upload/v1783646909/banners/mqxbk5vyruwomasgjppe.webpres.cloudinary.com/dyqkhcuxe/image/... https://res.cloudinary.com/dyqkhcuxe/image/upload/v1783646909/banners/mqxbk5vyruwomasgjppe.webp — 200 — 73.2 KiB — 487 ms — h2https://burj-almubdia.com/_next/static/chunks/2zjueh7t2vecu.js/_next/static/chunks/2zjueh7t2vecu.... https://burj-almubdia.com/_next/static/chunks/2zjueh7t2vecu.js — 200 — 2.1 KiB — 160 ms — h2https://burj-almubdia.com/_next/static/chunks/3a3w10hve8x99.js/_next/static/chunks/3a3w10hve8x99.... https://burj-almubdia.com/_next/static/chunks/3a3w10hve8x99.js — 200 — 8.8 KiB — 174 ms — h2https://burj-almubdia.com/_next/static/chunks/01iahevbqhpzt.js/_next/static/chunks/01iahevbqhpzt.... https://burj-almubdia.com/_next/static/chunks/01iahevbqhpzt.js — 200 — 69.5 KiB — 207 ms — h2https://burj-almubdia.com/_next/static/chunks/08c7277ny3zun.js/_next/static/chunks/08c7277ny3zun.... https://burj-almubdia.com/_next/static/chunks/08c7277ny3zun.js — 200 — 36.7 KiB — 233 ms — h2https://burj-almubdia.com/_next/static/chunks/27jktro2p5rq9.js/_next/static/chunks/27jktro2p5rq9.... https://burj-almubdia.com/_next/static/chunks/27jktro2p5rq9.js — 200 — 9.1 KiB — 178 ms — h2https://burj-almubdia.com/_next/static/chunks/turbopack-24iogg8nbo0i9.js/_next/static/chunks/turbopack-24io... https://burj-almubdia.com/_next/static/chunks/turbopack-24iogg8nbo0i9.js — 200 — 4.2 KiB — 172 ms — h2https://burj-almubdia.com/_next/static/chunks/07f6v-a0-9bws.js/_next/static/chunks/07f6v-a0-9bws.... https://burj-almubdia.com/_next/static/chunks/07f6v-a0-9bws.js — 200 — 6.3 KiB — 166 ms — h2https://burj-almubdia.com/_next/static/chunks/14mrh2-p_w84d.js/_next/static/chunks/14mrh2-p_w84d.... https://burj-almubdia.com/_next/static/chunks/14mrh2-p_w84d.js — 200 — 12.7 KiB — 187 ms — h2https://burj-almubdia.com/_next/static/chunks/2p7z3hxv4n75_.js/_next/static/chunks/2p7z3hxv4n75_.... https://burj-almubdia.com/_next/static/chunks/2p7z3hxv4n75_.js — 200 — 9.0 KiB — 166 ms — h2https://burj-almubdia.com/_next/static/chunks/3g5z1j2x5t36y.js/_next/static/chunks/3g5z1j2x5t36y.... https://burj-almubdia.com/_next/static/chunks/3g5z1j2x5t36y.js — 200 — 991 B — 171 ms — h2https://burj-almubdia.com/_next/static/chunks/0vokiadnpqopv.js/_next/static/chunks/0vokiadnpqopv.... https://burj-almubdia.com/_next/static/chunks/0vokiadnpqopv.js — 200 — 38.4 KiB — 189 ms — h2https://burj-almubdia.com/_next/static/chunks/3sfip5agrm4k_.js/_next/static/chunks/3sfip5agrm4k_.... https://burj-almubdia.com/_next/static/chunks/3sfip5agrm4k_.js — 200 — 5.4 KiB — 195 ms — h2https://burj-almubdia.com/_next/static/chunks/11be7t2ypx4a8.js/_next/static/chunks/11be7t2ypx4a8.... https://burj-almubdia.com/_next/static/chunks/11be7t2ypx4a8.js — 200 — 35.0 KiB — 182 ms — h2https://burj-almubdia.com/_next/static/chunks/1attyvbg1trg2.js/_next/static/chunks/1attyvbg1trg2.... https://burj-almubdia.com/_next/static/chunks/1attyvbg1trg2.js — 200 — 2.6 KiB — 165 ms — h2https://burj-almubdia.com/_next/static/chunks/359hmflaa6auq.js/_next/static/chunks/359hmflaa6auq.... https://burj-almubdia.com/_next/static/chunks/359hmflaa6auq.js — 200 — 5.5 KiB — 153 ms — h2https://burj-almubdia.com/site.webmanifest/site.webmanifest https://burj-almubdia.com/site.webmanifest — 200 — 946 B — 183 ms — h2https://res.cloudinary.com/dyqkhcuxe/image/upload/v1775149543/sub-categories/tdwspvgmhddtmgs4aeuk.webpres.cloudinary.com/dyqkhcuxe/image/... https://res.cloudinary.com/dyqkhcuxe/image/upload/v1775149543/sub-categories/tdwspvgmhddtmgs4aeuk.webp — 200 — 10.0 KiB — 173 ms — h2https://res.cloudinary.com/dypfbyxqc/image/upload/v1779764277/products/orange-apple_wktkfo.webpres.cloudinary.com/dypfbyxqc/image/... https://res.cloudinary.com/dypfbyxqc/image/upload/v1779764277/products/orange-apple_wktkfo.webp — 200 — 9.9 KiB — 390 ms — h2https://res.cloudinary.com/dypfbyxqc/image/upload/v1779764023/products/izt2iwvesdf9eplaxnml.webpres.cloudinary.com/dypfbyxqc/image/... https://res.cloudinary.com/dypfbyxqc/image/upload/v1779764023/products/izt2iwvesdf9eplaxnml.webp — 200 — 13.5 KiB — 362 ms — h2https://burj-almubdia.com/_next/static/media/1d2cc0c079997359-s.44lktk7jzy0s-.woff2/_next/static/media/1d2cc0c07999735... https://burj-almubdia.com/_next/static/media/1d2cc0c079997359-s.44lktk7jzy0s-.woff2 — 200 — 10.1 KiB — 133 ms — h2https://burj-almubdia.com/_next/static/media/e7b64a7fde1a3d32-s.2g2pkky1i4_-n.woff2/_next/static/media/e7b64a7fde1a3d3... https://burj-almubdia.com/_next/static/media/e7b64a7fde1a3d32-s.2g2pkky1i4_-n.woff2 — 200 — 9.9 KiB — 128 ms — h2https://burj-almubdia.com/_next/static/media/3a179c97f46f8d27-s.43x0y28f52kqu.woff2/_next/static/media/3a179c97f46f8d2... https://burj-almubdia.com/_next/static/media/3a179c97f46f8d27-s.43x0y28f52kqu.woff2 — 200 — 10.1 KiB — 123 ms — h2https://burj-almubdia.com/_next/static/media/f0e0669539caf32a-s.2cslzs_83-cos.woff2/_next/static/media/f0e0669539caf32... https://burj-almubdia.com/_next/static/media/f0e0669539caf32a-s.2cslzs_83-cos.woff2 — 200 — 9.8 KiB — 123 ms — h2https://burj-almubdia.com/favicon.ico/favicon.ico https://burj-almubdia.com/favicon.ico — 200 — 3.5 KiB — 123 ms — h2
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Image Optimization
84 images, 260 KB total, 124 KB wasted
INFO

Image Optimization Audit

Total Images

84

Total Size

260 KB

Oversized

6

Wasted

124 KB

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

Send Feedback