Skip to content
https://Nurevealed.com

Performance

· 26 checks — Lighthouse + waterfall + sustainability rolled into one auditable list.
SCORE
86
GRADE
B
FIX
2
REVIEW
9
PASS
12
INFO
3

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

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

7.02 s

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

9.72 s

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

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

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

9.72 s

Page Load Progression

578 ms
1.2 s
1.7 s
2.3 s
2.9 s
3.5 s
4.0 s
4.6 s
Checks
26
12 PASS 9 REVIEW 2 FIX
D
JS Execution Cost
Action
2101ms total JS execution
FIX
2101ms total JS execution
Warning::
https://nurevealed.com/: 868ms CPU time
Warning::
Unattributable: 483ms CPU time
Warning::
https://nurevealed.com/wp-content/themes/enpix/ass...: 342ms CPU time
Info::
https://nurevealed.com/wp-includes/js/jquery/jquer...: 213ms CPU time
Info::
https://nurevealed.com/wp-content/themes/enpix/ass...: 139ms CPU time
Info::
Third-party scripts: 483ms (23% of total)

Main Thread Breakdown

Other 36% Script Evaluation 23% Style & Layout 21% Script Parsing & Compilation 10% Parse HTML & CSS 5% Rendering 3%
ScriptTotalScriptingParse/CompileParty
https://nurevealed.com/868ms42ms6ms1st
Unattributable483ms9ms0ms3rd
https://nurevealed.com/wp-content/themes/enpix/assets/vendors/font-awesome/js/all.min.js?ver=6.1.1342ms90ms197ms1st
https://nurevealed.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1213ms186ms14ms1st
https://nurevealed.com/wp-content/themes/enpix/assets/vendors/splide/splide.min.js?ver=4.1.3139ms13ms4ms1st
https://nurevealed.com/wp-content/themes/enpix/assets/vendors/bootstrap/bootstrap.min.css?ver=6.9.456ms0ms0ms1st
F
HTTP Caching
Action
No cache headers
FIX
No cache headers
Warning::
No Cache-Control header found
Browsers will use heuristic caching, which can be unpredictable. Set explicit cache headers.
Info::
ETag present — enables conditional (304) responses

No Cache-Control header

Adding a Cache-Control header can significantly improve repeat-visit performance.

B
Page Weight Budget
1.5 MB transferred, 64 requests
REVIEW
1.5 MB transferred, 64 requests
Info::
Page weighs 3.4 MB (1.5 MB transferred)
Warning::
JavaScript is 735 KB — consider code splitting or lazy loading
Large JavaScript bundles delay interactivity. Split code by route or defer non-critical scripts.
Got: 735 KB
Info::
64 HTTP requests
Info::
Estimated 0.31 g CO2 per page load
1.5 MB / 2.4 MB budget
1.5 MB transferred
64 requests
0.31 g CO2 per page load
JavaScript 735.2 KiB 48%
Images 481.6 KiB 32%
Fonts 195.5 KiB 13%
CSS 93.0 KiB 6%
HTML 13.1 KiB 1%
Other 4.8 KiB 0%
0 2.4 MB 4.9 MB
Approaching limit

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
11 images, 0 KB saveable
REVIEW
11 images, 0 KB saveable
Warning::
https://nurevealed.com/wp-content/uploads/2024/02/... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
https://nurevealed.com/wp-content/uploads/2024/02/... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
11 images 482 KB
0 oversized -0 KB
11 legacy format
2 missing dimensions CLS 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

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.
C
Compression Algorithm
Action
Main response served uncompressed
REVIEW
Main response served uncompressed
Info::
Main HTML response has no Content-Encoding (uncompressed)
The main HTML document is served without compression. The Text Compression section above lists the broader picture; for the main response specifically, even gzip would shave ~70-80% off most text payloads.
B
Main HTML Cache-Control
No Cache-Control header on main HTML response
REVIEW
No Cache-Control header on main HTML response
Info::
Main HTML response has no Cache-Control header
Without an explicit Cache-Control, browsers fall back to heuristic caching (~10% of Last-Modified age). Set `Cache-Control: no-cache` or `max-age=300` for HTML to control freshness explicitly -- prevents stale auth state and SPA shell drift.
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
Page Weight Inventory
Action
64 resources · 1.5 MB · 0 KB savings available
REVIEW
64 resources · 1.5 MB · 0 KB savings available
Warning::
Page weight 1.5 MB exceeds 1 MB target by 499 KB
Got: 1.5 MB Expected: ≤ 1 MB
Info::
6 third-party resources (3% of weight)
Info::
2 resources over 200KB
64 resources · 1.5 MiB · 6 third-party 499.2 KiB over 1MB target
JavaScript 48% · 735.2 KiB
Image 32% · 486.4 KiB
Font 13% · 195.5 KiB
CSS 6% · 93.0 KiB
Document 1% · 13.1 KiB
B
JavaScript Blocking
1 JS blocking issue(s) detected
REVIEW
1 JS blocking issue(s) detected
Warning::
23 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.
C
Green Hosting
Action
Whether the site is served from green-energy infrastructure
REVIEW

Green Hosting

No green hosting detected

A+
Third-Party Impact
3% third-party, 0 ms blocking
PASS
3% third-party, 0 ms blocking
Info::
Third-party code accounts for 3% of page weight (49.8 KiB of 1.5 MiB)
Info::
Third-party blocking time is low (0 ms)
97%
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
4 fonts (196 KB)
PASS
4 fonts (196 KB)
Info::
4 font(s) use font-display: swap (FOUT risk but functional)

Web fonts

4

196 KB total

Render-blocking

0

of 4

Dominant font-display

swap

Most common across fonts

Font loading timeline
Transfer FOIT (block) FOUT (swap)
0 ms 2.0 s 4.0 s 6.0 s 8.0 s 10.0 s FCP 7.0 s LCP 9.7 shttps://nurevealed.com/wp-content/themes/enpix/assets/vendors/font-awesome/webfonts/fa-solid-900.woff2fa-solid-900.woff2 https://nurevealed.com/wp-content/themes/enpix/assets/vendors/font-awesome/webfonts/fa-solid-900.woff2 — 147.2 KiB — 70 ms — font-display: swaphttps://fonts.gstatic.com/s/courierprime/v11/u-4k0q2lgwslOqpF_6gQ8kELY7pMT-Dfq9PrNX0.woff2u-4k0q2lgwslOqpF_6gQ8kE... https://fonts.gstatic.com/s/courierprime/v11/u-4k0q2lgwslOqpF_6gQ8kELY7pMT-Dfq9PrNX0.woff2 — 11.3 KiB — 31 ms — font-display: swaphttps://fonts.gstatic.com/s/courierprime/v11/u-450q2lgwslOqpF_6gQ8kELawFpWs39pvk.woff2u-450q2lgwslOqpF_6gQ8kE... https://fonts.gstatic.com/s/courierprime/v11/u-450q2lgwslOqpF_6gQ8kELawFpWs39pvk.woff2 — 11.0 KiB — 29 ms — font-display: swaphttps://fonts.gstatic.com/s/jost/v20/92zatBhPNqw73oTd4jQmfxI.woff292zatBhPNqw73oTd4jQmfxI... https://fonts.gstatic.com/s/jost/v20/92zatBhPNqw73oTd4jQmfxI.woff2 — 26.0 KiB — 9 ms — font-display: swap
fa-solid-900.woff2 woff2 swap
Size 147 KB
Load time 70 ms
Start 468 ms
Risk FOUT — text flashes from fallback to web font
  • Subset this font — over 100 KB suggests Latin Extended or full glyph coverage that most pages don't need
u-4k0q2lgwslOqpF_6gQ8kE... woff2 swap
Size 11 KB
Load time 31 ms
Start 469 ms
Risk FOUT — text flashes from fallback to web font
u-450q2lgwslOqpF_6gQ8kE... woff2 swap
Size 11 KB
Load time 29 ms
Start 469 ms
Risk FOUT — text flashes from fallback to web font
92zatBhPNqw73oTd4jQmfxI... woff2 swap
Size 26 KB
Load time 9 ms
Start 588 ms
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)

Fixing the unchecked items could save ~74 KB and ~148 ms

A+
JS Bundles
25 scripts, 0 KB unused
PASS
25 scripts, 0 KB unused
0 KB unused JavaScript

Downloaded but never executed on this page.

ScriptSizeUnusedMinifiedParty
https://nurevealed.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.129 KB1st
https://nurevealed.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.15 KB1st
https://nurevealed.com/wp-content/themes/enpix/assets/vendors/isotope/isotope.pkgd.min.js?ver=3.0.610 KB1st
https://nurevealed.com/wp-content/themes/enpix/assets/vendors/splide/splide.min.js?ver=4.1.312 KB1st
https://nurevealed.com/wp-includes/js/dist/hooks.min.js?ver=dd5603f07f9220ed27f12 KB1st
https://nurevealed.com/wp-includes/js/dist/i18n.min.js?ver=c26c3dc7bed3667933752 KB1st
https://nurevealed.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.1.53 KB1st
https://nurevealed.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.1.54 KB1st
https://nurevealed.com/wp-content/themes/enpix/assets/vendors/font-awesome/js/all.min.js?ver=6.1.1593 KB1st
https://nurevealed.com/wp-content/themes/enpix/assets/vendors/bootstrap/bootstrap.min.js?ver=5.1.316 KB1st
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
dns-prefetch
1
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+
Server Response Intelligence
2 server-response signal(s) detected
PASS
2 server-response signal(s) detected
Info::
`Vary` header declared: Accept-Encoding
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::
`ETag` present -- conditional GET supported
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
1 CSS depth issue(s) detected
PASS
1 CSS depth issue(s) detected
Warning::
22 render-blocking stylesheet(s) -- recommended: <=3
Each `<link rel="stylesheet">` without a non-blocking `media` attribute holds up the first paint. Browsers download all of them before painting any content. Consolidate into 1-2 critical-path stylesheets; defer non-critical CSS via `<link rel="stylesheet" media="print" onload="this.media='all'">` or via the loadCSS pattern; inline above-the-fold CSS in `<style>` to short-circuit the request entirely.
Network Waterfall
64 requests over 1062ms
INFO
0 ms 2.0 s 4.0 s 6.0 s 8.0 s 10.0 s FCP 7.0 s LCP 9.7 shttps://nurevealed.com// https://nurevealed.com/ — 200 — 13.1 KiB — 91 ms — h2https://fonts.googleapis.com/css2?family=Jost%3Awght%40400%3B500%3B600%3B700&display=swap&ver=1.0fonts.googleapis.com/css2?family=Jo... https://fonts.googleapis.com/css2?family=Jost%3Awght%40400%3B500%3B600%3B700&display=swap&ver=1.0 — 200 — 562 B — 129 ms — h2https://nurevealed.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.5/wp-content/plugins/contact-form-7/... https://nurevealed.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.5 — 200 — 1.1 KiB — 55 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/font-awesome/css/all.min.css?ver=6.9.4/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/font-awesome/css/all.min.css?ver=6.9.4 — 200 — 21.5 KiB — 63 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/normalize/normalize.css?ver=6.9.4/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/normalize/normalize.css?ver=6.9.4 — 200 — 1.8 KiB — 243 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/bootstrap/bootstrap.min.css?ver=6.9.4/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/bootstrap/bootstrap.min.css?ver=6.9.4 — 200 — 21.0 KiB — 274 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/splide/splide.min.css?ver=6.9.4/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/splide/splide.min.css?ver=6.9.4 — 200 — 1.3 KiB — 53 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/animate/animate.min.css?ver=6.9.4/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/animate/animate.min.css?ver=6.9.4 — 200 — 4.9 KiB — 81 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors//magnific-popup/magnific-popup.css?ver=6.9.4/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors//magnific-popup/magnific-popup.css?ver=6.9.4 — 200 — 1.9 KiB — 57 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/mmenu-light/mmenu-light.css?ver=6.9.4/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/mmenu-light/mmenu-light.css?ver=6.9.4 — 200 — 1.8 KiB — 250 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/css/preloader.css?ver=6.9.4/wp-content/themes/enpix/assets/css... https://nurevealed.com/wp-content/themes/enpix/assets/css/preloader.css?ver=6.9.4 — 200 — 188 B — 54 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/css/main.css?ver=6.9.4/wp-content/themes/enpix/assets/css... https://nurevealed.com/wp-content/themes/enpix/assets/css/main.css?ver=6.9.4 — 200 — 16.2 KiB — 79 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/css/custom.css?ver=6.9.4/wp-content/themes/enpix/assets/css... https://nurevealed.com/wp-content/themes/enpix/assets/css/custom.css?ver=6.9.4 — 200 — 1012 B — 68 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/css/wpd-style.css?ver=6.9.4/wp-content/themes/enpix/assets/css... https://nurevealed.com/wp-content/themes/enpix/assets/css/wpd-style.css?ver=6.9.4 — 200 — 6.4 KiB — 69 ms — h2https://nurevealed.com/wp-content/themes/enpix/style.css?ver=6.9.4/wp-content/themes/enpix/style.css?... https://nurevealed.com/wp-content/themes/enpix/style.css?ver=6.9.4 — 200 — 475 B — 238 ms — h2https://nurevealed.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=4.0.7/wp-content/plugins/elementor/asset... https://nurevealed.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=4.0.7 — 200 — 6.7 KiB — 241 ms — h2https://nurevealed.com/wp-content/uploads/elementor/css/post-248.css?ver=1778115994/wp-content/uploads/elementor/css/p... https://nurevealed.com/wp-content/uploads/elementor/css/post-248.css?ver=1778115994 — 200 — 607 B — 64 ms — h2https://nurevealed.com/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=4.0.7/wp-content/plugins/elementor/asset... https://nurevealed.com/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=4.0.7 — 200 — 346 B — 250 ms — h2https://nurevealed.com/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=4.0.7/wp-content/plugins/elementor/asset... https://nurevealed.com/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=4.0.7 — 200 — 413 B — 245 ms — h2https://nurevealed.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css?ver=4.0.7/wp-content/plugins/elementor/asset... https://nurevealed.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css?ver=4.0.7 — 200 — 576 B — 251 ms — h2https://nurevealed.com/wp-content/plugins/elementor/assets/css/widget-divider.min.css?ver=4.0.7/wp-content/plugins/elementor/asset... https://nurevealed.com/wp-content/plugins/elementor/assets/css/widget-divider.min.css?ver=4.0.7 — 200 — 898 B — 68 ms — h2https://nurevealed.com/wp-content/uploads/elementor/css/post-2203.css?ver=1778117643/wp-content/uploads/elementor/css/p... https://nurevealed.com/wp-content/uploads/elementor/css/post-2203.css?ver=1778117643 — 200 — 2.4 KiB — 66 ms — h2https://fonts.googleapis.com/css?family=Courier+Prime:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic&display=swapfonts.googleapis.com/css?family=Cou... https://fonts.googleapis.com/css?family=Courier+Prime:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic&display=swap — 200 — 993 B — 84 ms — h2https://nurevealed.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1/wp-includes/js/jquery/jquery.min.j... https://nurevealed.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1 — 200 — 29.2 KiB — 264 ms — h2https://nurevealed.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1/wp-includes/js/jquery/jquery-migra... https://nurevealed.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1 — 200 — 4.7 KiB — 253 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/isotope/isotope.pkgd.min.js?ver=3.0.6/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/isotope/isotope.pkgd.min.js?ver=3.0.6 — 200 — 9.6 KiB — 71 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/splide/splide.min.js?ver=4.1.3/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/splide/splide.min.js?ver=4.1.3 — 200 — 12.3 KiB — 71 ms — h2https://nurevealed.com/wp-content/uploads/2024/02/115.png/wp-content/uploads/2024/02/115.png https://nurevealed.com/wp-content/uploads/2024/02/115.png — 200 — 5.7 KiB — 260 ms — h2https://nurevealed.com/wp-content/plugins/enpix-core/widgets/images/Path.svg/wp-content/plugins/enpix-core/widg... https://nurevealed.com/wp-content/plugins/enpix-core/widgets/images/Path.svg — 200 — 387 B — 69 ms — h2https://nurevealed.com/wp-content/uploads/2023/01/computer.png/wp-content/uploads/2023/01/compute... https://nurevealed.com/wp-content/uploads/2023/01/computer.png — 200 — 447.1 KiB — 112 ms — h2
0 ms 2.0 s 4.0 s 6.0 s 8.0 s 10.0 s FCP 7.0 s LCP 9.7 shttps://nurevealed.com// https://nurevealed.com/ — 200 — 13.1 KiB — 91 ms — h2https://fonts.googleapis.com/css2?family=Jost%3Awght%40400%3B500%3B600%3B700&display=swap&ver=1.0fonts.googleapis.com/css2?family=Jo... https://fonts.googleapis.com/css2?family=Jost%3Awght%40400%3B500%3B600%3B700&display=swap&ver=1.0 — 200 — 562 B — 129 ms — h2https://nurevealed.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.5/wp-content/plugins/contact-form-7/... https://nurevealed.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=6.1.5 — 200 — 1.1 KiB — 55 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/font-awesome/css/all.min.css?ver=6.9.4/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/font-awesome/css/all.min.css?ver=6.9.4 — 200 — 21.5 KiB — 63 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/normalize/normalize.css?ver=6.9.4/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/normalize/normalize.css?ver=6.9.4 — 200 — 1.8 KiB — 243 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/bootstrap/bootstrap.min.css?ver=6.9.4/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/bootstrap/bootstrap.min.css?ver=6.9.4 — 200 — 21.0 KiB — 274 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/splide/splide.min.css?ver=6.9.4/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/splide/splide.min.css?ver=6.9.4 — 200 — 1.3 KiB — 53 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/animate/animate.min.css?ver=6.9.4/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/animate/animate.min.css?ver=6.9.4 — 200 — 4.9 KiB — 81 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors//magnific-popup/magnific-popup.css?ver=6.9.4/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors//magnific-popup/magnific-popup.css?ver=6.9.4 — 200 — 1.9 KiB — 57 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/mmenu-light/mmenu-light.css?ver=6.9.4/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/mmenu-light/mmenu-light.css?ver=6.9.4 — 200 — 1.8 KiB — 250 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/css/preloader.css?ver=6.9.4/wp-content/themes/enpix/assets/css... https://nurevealed.com/wp-content/themes/enpix/assets/css/preloader.css?ver=6.9.4 — 200 — 188 B — 54 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/css/main.css?ver=6.9.4/wp-content/themes/enpix/assets/css... https://nurevealed.com/wp-content/themes/enpix/assets/css/main.css?ver=6.9.4 — 200 — 16.2 KiB — 79 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/css/custom.css?ver=6.9.4/wp-content/themes/enpix/assets/css... https://nurevealed.com/wp-content/themes/enpix/assets/css/custom.css?ver=6.9.4 — 200 — 1012 B — 68 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/css/wpd-style.css?ver=6.9.4/wp-content/themes/enpix/assets/css... https://nurevealed.com/wp-content/themes/enpix/assets/css/wpd-style.css?ver=6.9.4 — 200 — 6.4 KiB — 69 ms — h2https://nurevealed.com/wp-content/themes/enpix/style.css?ver=6.9.4/wp-content/themes/enpix/style.css?... https://nurevealed.com/wp-content/themes/enpix/style.css?ver=6.9.4 — 200 — 475 B — 238 ms — h2https://nurevealed.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=4.0.7/wp-content/plugins/elementor/asset... https://nurevealed.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=4.0.7 — 200 — 6.7 KiB — 241 ms — h2https://nurevealed.com/wp-content/uploads/elementor/css/post-248.css?ver=1778115994/wp-content/uploads/elementor/css/p... https://nurevealed.com/wp-content/uploads/elementor/css/post-248.css?ver=1778115994 — 200 — 607 B — 64 ms — h2https://nurevealed.com/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=4.0.7/wp-content/plugins/elementor/asset... https://nurevealed.com/wp-content/plugins/elementor/assets/css/widget-heading.min.css?ver=4.0.7 — 200 — 346 B — 250 ms — h2https://nurevealed.com/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=4.0.7/wp-content/plugins/elementor/asset... https://nurevealed.com/wp-content/plugins/elementor/assets/css/widget-image.min.css?ver=4.0.7 — 200 — 413 B — 245 ms — h2https://nurevealed.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css?ver=4.0.7/wp-content/plugins/elementor/asset... https://nurevealed.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css?ver=4.0.7 — 200 — 576 B — 251 ms — h2https://nurevealed.com/wp-content/plugins/elementor/assets/css/widget-divider.min.css?ver=4.0.7/wp-content/plugins/elementor/asset... https://nurevealed.com/wp-content/plugins/elementor/assets/css/widget-divider.min.css?ver=4.0.7 — 200 — 898 B — 68 ms — h2https://nurevealed.com/wp-content/uploads/elementor/css/post-2203.css?ver=1778117643/wp-content/uploads/elementor/css/p... https://nurevealed.com/wp-content/uploads/elementor/css/post-2203.css?ver=1778117643 — 200 — 2.4 KiB — 66 ms — h2https://fonts.googleapis.com/css?family=Courier+Prime:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic&display=swapfonts.googleapis.com/css?family=Cou... https://fonts.googleapis.com/css?family=Courier+Prime:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic&display=swap — 200 — 993 B — 84 ms — h2https://nurevealed.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1/wp-includes/js/jquery/jquery.min.j... https://nurevealed.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1 — 200 — 29.2 KiB — 264 ms — h2https://nurevealed.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1/wp-includes/js/jquery/jquery-migra... https://nurevealed.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1 — 200 — 4.7 KiB — 253 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/isotope/isotope.pkgd.min.js?ver=3.0.6/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/isotope/isotope.pkgd.min.js?ver=3.0.6 — 200 — 9.6 KiB — 71 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/splide/splide.min.js?ver=4.1.3/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/splide/splide.min.js?ver=4.1.3 — 200 — 12.3 KiB — 71 ms — h2https://nurevealed.com/wp-content/uploads/2024/02/115.png/wp-content/uploads/2024/02/115.png https://nurevealed.com/wp-content/uploads/2024/02/115.png — 200 — 5.7 KiB — 260 ms — h2https://nurevealed.com/wp-content/plugins/enpix-core/widgets/images/Path.svg/wp-content/plugins/enpix-core/widg... https://nurevealed.com/wp-content/plugins/enpix-core/widgets/images/Path.svg — 200 — 387 B — 69 ms — h2https://nurevealed.com/wp-content/uploads/2023/01/computer.png/wp-content/uploads/2023/01/compute... https://nurevealed.com/wp-content/uploads/2023/01/computer.png — 200 — 447.1 KiB — 112 ms — h2https://nurevealed.com/wp-content/plugins/enpix-core/widgets/images/Rectangle.svg/wp-content/plugins/enpix-core/widg... https://nurevealed.com/wp-content/plugins/enpix-core/widgets/images/Rectangle.svg — 200 — 426 B — 174 ms — h2https://nurevealed.com/wp-content/plugins/enpix-core/widgets/images/Oval.svg/wp-content/plugins/enpix-core/widg... https://nurevealed.com/wp-content/plugins/enpix-core/widgets/images/Oval.svg — 200 — 448 B — 34 ms — h2https://nurevealed.com/wp-content/uploads/2024/02/cropped-logo-plaque-load.png/wp-content/uploads/2024/02/cropped... https://nurevealed.com/wp-content/uploads/2024/02/cropped-logo-plaque-load.png — 200 — 24.4 KiB — 61 ms — h2https://nurevealed.com/wp-includes/js/dist/hooks.min.js?ver=dd5603f07f9220ed27f1/wp-includes/js/dist/hooks.min.js?v... https://nurevealed.com/wp-includes/js/dist/hooks.min.js?ver=dd5603f07f9220ed27f1 — 200 — 2.0 KiB — 82 ms — h2https://nurevealed.com/wp-includes/js/dist/i18n.min.js?ver=c26c3dc7bed366793375/wp-includes/js/dist/i18n.min.js?ve... https://nurevealed.com/wp-includes/js/dist/i18n.min.js?ver=c26c3dc7bed366793375 — 200 — 2.2 KiB — 48 ms — h2https://nurevealed.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.1.5/wp-content/plugins/contact-form-7/... https://nurevealed.com/wp-content/plugins/contact-form-7/includes/swv/js/index.js?ver=6.1.5 — 200 — 3.5 KiB — 52 ms — h2https://nurevealed.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.1.5/wp-content/plugins/contact-form-7/... https://nurevealed.com/wp-content/plugins/contact-form-7/includes/js/index.js?ver=6.1.5 — 200 — 4.1 KiB — 50 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/font-awesome/js/all.min.js?ver=6.1.1/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/font-awesome/js/all.min.js?ver=6.1.1 — 200 — 593.2 KiB — 113 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/bootstrap/bootstrap.min.js?ver=5.1.3/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/bootstrap/bootstrap.min.js?ver=5.1.3 — 200 — 15.6 KiB — 104 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/counter/jquery.appear.js?ver=1.0.0/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/counter/jquery.appear.js?ver=1.0.0 — 200 — 802 B — 52 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/counter/jquery.countTo.js?ver=1.0.0/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/counter/jquery.countTo.js?ver=1.0.0 — 200 — 1.2 KiB — 54 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/magnific-popup/magnific-popup.js?ver=1.1.0/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/magnific-popup/magnific-popup.js?ver=1.1.0 — 200 — 7.1 KiB — 82 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/mmenu-light/mmenu-light.min.js?ver=1.0.0/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/mmenu-light/mmenu-light.min.js?ver=1.0.0 — 200 — 1.8 KiB — 84 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/animate/wow.min.js?ver=1.3.0/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/animate/wow.min.js?ver=1.3.0 — 200 — 2.7 KiB — 54 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/js/main.js?ver=1.0/wp-content/themes/enpix/assets/js/... https://nurevealed.com/wp-content/themes/enpix/assets/js/main.js?ver=1.0 — 200 — 2.0 KiB — 85 ms — h2https://nurevealed.com/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=4.0.7/wp-content/plugins/elementor/asset... https://nurevealed.com/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=4.0.7 — 200 — 2.4 KiB — 55 ms — h2https://nurevealed.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=4.0.7/wp-content/plugins/elementor/asset... https://nurevealed.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=4.0.7 — 200 — 15.3 KiB — 68 ms — h2https://nurevealed.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3/wp-includes/js/jquery/ui/core.min.... https://nurevealed.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3 — 200 — 6.8 KiB — 89 ms — h2https://nurevealed.com/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=4.0.7/wp-content/plugins/elementor/asset... https://nurevealed.com/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=4.0.7 — 200 — 10.0 KiB — 98 ms — h2https://nurevealed.com/wp-content/plugins/enpix-core/widgets/images/Ellipse14.svg/wp-content/plugins/enpix-core/widg... https://nurevealed.com/wp-content/plugins/enpix-core/widgets/images/Ellipse14.svg — 200 — 453 B — 89 ms — h2https://nurevealed.com/wp-content/plugins/enpix-core/widgets/images/Ellipse13.svg/wp-content/plugins/enpix-core/widg... https://nurevealed.com/wp-content/plugins/enpix-core/widgets/images/Ellipse13.svg — 200 — 420 B — 49 ms — h2https://nurevealed.com/wp-content/plugins/enpix-core/widgets/images/Group21.svg/wp-content/plugins/enpix-core/widg... https://nurevealed.com/wp-content/plugins/enpix-core/widgets/images/Group21.svg — 200 — 782 B — 56 ms — h2https://nurevealed.com/wp-content/uploads/2022/12/Trianglelineshape.svg/wp-content/uploads/2022/12/Triangl... https://nurevealed.com/wp-content/uploads/2022/12/Trianglelineshape.svg — 200 — 757 B — 93 ms — h2https://nurevealed.com/wp-content/uploads/2022/12/Group34.svg/wp-content/uploads/2022/12/Group34... https://nurevealed.com/wp-content/uploads/2022/12/Group34.svg — 200 — 678 B — 94 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/vendors/font-awesome/webfonts/fa-solid-900.woff2/wp-content/themes/enpix/assets/ven... https://nurevealed.com/wp-content/themes/enpix/assets/vendors/font-awesome/webfonts/fa-solid-900.woff2 — 200 — 147.2 KiB — 70 ms — h2https://fonts.gstatic.com/s/courierprime/v11/u-4k0q2lgwslOqpF_6gQ8kELY7pMT-Dfq9PrNX0.woff2fonts.gstatic.com/s/courierprime/v1... https://fonts.gstatic.com/s/courierprime/v11/u-4k0q2lgwslOqpF_6gQ8kELY7pMT-Dfq9PrNX0.woff2 — 200 — 11.3 KiB — 31 ms — h3https://fonts.gstatic.com/s/courierprime/v11/u-450q2lgwslOqpF_6gQ8kELawFpWs39pvk.woff2fonts.gstatic.com/s/courierprime/v1... https://fonts.gstatic.com/s/courierprime/v11/u-450q2lgwslOqpF_6gQ8kELawFpWs39pvk.woff2 — 200 — 11.0 KiB — 29 ms — h3https://fonts.gstatic.com/s/jost/v20/92zatBhPNqw73oTd4jQmfxI.woff2fonts.gstatic.com/s/jost/v20/92zatB... https://fonts.gstatic.com/s/jost/v20/92zatBhPNqw73oTd4jQmfxI.woff2 — 200 — 26.0 KiB — 9 ms — h3blob:https://nurevealed.com/90b836ad-6865-4f24-804e-37597c7cbd3bnurevealed.com/90b836ad-6865-4f24-8... blob:https://nurevealed.com/90b836ad-6865-4f24-804e-37597c7cbd3b — 200 — -1 B — 90 ms — blobhttps://nurevealed.com/wp-content/plugins/elementor/assets/js/section-frontend-handlers.d85ab872da118940910d.bundle.min.js/wp-content/plugins/elementor/asset... https://nurevealed.com/wp-content/plugins/elementor/assets/js/section-frontend-handlers.d85ab872da118940910d.bundle.min.js — 200 — 401 B — 98 ms — h2https://nurevealed.com/wp-content/plugins/elementor/assets/js/shared-frontend-handlers.03caa53373b56d3bab67.bundle.min.js/wp-content/plugins/elementor/asset... https://nurevealed.com/wp-content/plugins/elementor/assets/js/shared-frontend-handlers.03caa53373b56d3bab67.bundle.min.js — 200 — 2.6 KiB — 100 ms — h2https://nurevealed.com/wp-content/plugins/elementor/assets/js/text-editor.45609661e409413f1cef.bundle.min.js/wp-content/plugins/elementor/asset... https://nurevealed.com/wp-content/plugins/elementor/assets/js/text-editor.45609661e409413f1cef.bundle.min.js — 200 — 764 B — 301 ms — h2https://nurevealed.com/wp-content/uploads/2024/02/lh1.png/wp-content/uploads/2024/02/lh1.png https://nurevealed.com/wp-content/uploads/2024/02/lh1.png — 200 — 4.8 KiB — 313 ms — h2https://nurevealed.com/wp-includes/js/wp-emoji-release.min.js?ver=6.9.4/wp-includes/js/wp-emoji-release.mi... https://nurevealed.com/wp-includes/js/wp-emoji-release.min.js?ver=6.9.4 — 200 — 5.0 KiB — 269 ms — h2
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Third-Party Script Cost
Per-script blocking time, transfer cost, and cache headers
INFO
23% of JavaScript execution is third-party
First-party Third-party 483ms · 0KB · $8/mo
Unattributable
Other
Costly
Execution 483ms
Transfer 0 KB
Monthly Cost $8/mo

These scripts may cost more than they're worth

  • Unattributable adds 483ms and costs ~$8/month

Unattributable takes 483ms 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
17 images, 479 KB total, 17 KB wasted
INFO

Image Optimization Audit

Total Images

17

Total Size

479 KB

Oversized

1

Wasted

17 KB

9 missing alt text 8 missing dimensions 8 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