Skip to content
https://Nurevealed.com

Performance

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

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

84
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.
100
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.

798 ms

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

2.66 s

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

23 ms

Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.

0.001

Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.

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

2.67 s

Page Load Progression

433 ms
866 ms
1.3 s
1.7 s
2.2 s
2.6 s
3.0 s
3.5 s
Checks
22
9 PASS 8 REVIEW 2 FIX
F
Page Weight Budget
Action
2.6 MB transferred, 70 requests
FIX
2.6 MB transferred, 70 requests
Warning::
Page weighs 4.5 MB (2.6 MB transferred)
Warning::
Images are 1.6 MB — compress or use modern formats
Convert images to WebP/AVIF and resize to display dimensions to reduce transfer size.
Got: 1.6 MB
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::
70 HTTP requests
Info::
Estimated 0.54 g CO2 per page load
2.6 MB / 2.4 MB budget
2.6 MB transferred
70 requests
0.54 g CO2 per page load
Images 1.6 MiB 61%
JavaScript 735.1 KiB 28%
Fonts 195.5 KiB 7%
CSS 93.0 KiB 4%
HTML 13.1 KiB 0%
Other 4.8 KiB 0%
0 2.4 MB 4.9 MB
Over budget

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

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.

C
Image Optimization
Action
17 images, 0 KB saveable
REVIEW
17 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.
17 images 1.6 MB
0 oversized -0 KB
17 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
JS Execution Cost
596ms total JS execution
REVIEW
596ms total JS execution
Warning::
https://nurevealed.com/: 321ms CPU time
Info::
Unattributable: 130ms CPU time
Info::
https://nurevealed.com/wp-content/themes/enpix/ass...: 91ms CPU time
Info::
https://nurevealed.com/wp-includes/js/jquery/jquer...: 54ms CPU time
Info::
Third-party scripts: 130ms (22% of total)

Main Thread Breakdown

Other 34% Style & Layout 27% Script Evaluation 21% Script Parsing & Compilation 9% Rendering 5% Parse HTML & CSS 5%
ScriptTotalScriptingParse/CompileParty
https://nurevealed.com/321ms13ms3ms1st
Unattributable130ms2ms0ms3rd
https://nurevealed.com/wp-content/themes/enpix/assets/vendors/font-awesome/js/all.min.js?ver=6.1.191ms24ms55ms1st
https://nurevealed.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.154ms47ms3ms1st
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
70 resources · 2.6 MB · 0 KB savings available
REVIEW
70 resources · 2.6 MB · 0 KB savings available
Warning::
Page weight 2.6 MB exceeds 1 MB target by 1.6 MB
Got: 2.6 MB Expected: ≤ 1 MB
Info::
6 third-party resources (2% of weight)
Info::
3 resources over 200KB
70 resources · 2.6 MiB · 6 third-party 1.6 MiB over 1MB target
Image 61% · 1.6 MiB
JavaScript 28% · 735.1 KiB
Font 7% · 195.5 KiB
CSS 4% · 93.0 KiB
Document 0% · 13.1 KiB
C
Green Hosting
Action
Whether the site is served from green-energy infrastructure
REVIEW

Green Hosting

No green hosting detected

A+
Third-Party Impact
2% third-party, 0 ms blocking
PASS
2% third-party, 0 ms blocking
Info::
Third-party code accounts for 2% of page weight (49.8 KiB of 2.6 MiB)
Info::
Third-party blocking time is low (0 ms)
98%
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 500 ms 1.0 s 1.5 s 2.0 s 2.5 s FCP 798 ms LCP 2.7 shttps://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 — 10 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 — 12 ms — font-display: swaphttps://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 — 38 ms — font-display: swaphttps://fonts.gstatic.com/s/jost/v20/92zatBhPNqw73oTd4jQmfxI.woff292zatBhPNqw73oTd4jQmfxI... https://fonts.gstatic.com/s/jost/v20/92zatBhPNqw73oTd4jQmfxI.woff2 — 26.0 KiB — 23 ms — font-display: swap
u-4k0q2lgwslOqpF_6gQ8kE... woff2 swap
Size 11 KB
Load time 10 ms
Start 694 ms
Risk FOUT — text flashes from fallback to web font
u-450q2lgwslOqpF_6gQ8kE... woff2 swap
Size 11 KB
Load time 12 ms
Start 695 ms
Risk FOUT — text flashes from fallback to web font
fa-solid-900.woff2 woff2 swap
Size 147 KB
Load time 38 ms
Start 835 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
92zatBhPNqw73oTd4jQmfxI... woff2 swap
Size 26 KB
Load time 23 ms
Start 846 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
No optimization needed
PASS
No optimization needed
Info::
No resource hint issues
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
Network Waterfall
70 requests over 1176ms
INFO
0 ms 500 ms 1.0 s 1.5 s 2.0 s 2.5 s FCP 798 ms LCP 2.7 shttps://nurevealed.com// https://nurevealed.com/ — 200 — 13.1 KiB — 94 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 — 956 B — 57 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 — 188 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 — 197 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 — 159 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 — 177 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 — 51 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 — 184 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 — 180 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 — 164 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 — 51 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 — 77 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 — 67 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 — 183 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 — 165 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 — 167 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 — 186 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 — 169 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 — 135 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 — 170 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 — 66 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 — 68 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 — 622 B — 52 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 — 179 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 — 187 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.5 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 — 532 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 — 189 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 — 533 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 — 132 ms — h2
0 ms 500 ms 1.0 s 1.5 s 2.0 s 2.5 s FCP 798 ms LCP 2.7 shttps://nurevealed.com// https://nurevealed.com/ — 200 — 13.1 KiB — 94 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 — 956 B — 57 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 — 188 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 — 197 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 — 159 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 — 177 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 — 51 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 — 184 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 — 180 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 — 164 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 — 51 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 — 77 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 — 67 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 — 183 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 — 165 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 — 167 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 — 186 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 — 169 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 — 135 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 — 170 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 — 66 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 — 68 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 — 622 B — 52 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 — 179 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 — 187 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.5 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 — 532 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 — 189 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 — 533 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 — 132 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 — 330 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 — 37 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 — 24 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 — 33 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 — 40 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 — 82 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 — 84 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 — 141 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 — 34 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 — 89 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 — 91 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 — 36 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 — 106 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 — 93 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 — 71 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 — 115 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 — 120 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 — 109 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 — 102 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 — 73 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 — 94 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 — 98 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 — 75 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 — 110 ms — h2https://nurevealed.com/wp-content/themes/enpix/assets/img/home/banner/banner-bg.png/wp-content/themes/enpix/assets/img... https://nurevealed.com/wp-content/themes/enpix/assets/img/home/banner/banner-bg.png — 200 — 1.0 MiB — 133 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 — 10 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 — 12 ms — h3https://nurevealed.com/wp-content/uploads/2022/12/neversayno-630x401.jpeg/wp-content/uploads/2022/12/neversa... https://nurevealed.com/wp-content/uploads/2022/12/neversayno-630x401.jpeg — 200 — 13.0 KiB — 32 ms — h2https://nurevealed.com/wp-content/uploads/2022/12/Aversa-630x401.jpeg/wp-content/uploads/2022/12/Aversa-... https://nurevealed.com/wp-content/uploads/2022/12/Aversa-630x401.jpeg — 200 — 11.5 KiB — 40 ms — h2https://nurevealed.com/wp-content/uploads/2022/12/crave-630x401.jpeg/wp-content/uploads/2022/12/crave-6... https://nurevealed.com/wp-content/uploads/2022/12/crave-630x401.jpeg — 200 — 12.8 KiB — 28 ms — h2https://nurevealed.com/wp-content/uploads/2022/12/kafa-630x401.jpeg/wp-content/uploads/2022/12/kafa-63... https://nurevealed.com/wp-content/uploads/2022/12/kafa-630x401.jpeg — 200 — 14.1 KiB — 41 ms — h2https://nurevealed.com/wp-content/uploads/2022/12/shearplus-630x401.jpg/wp-content/uploads/2022/12/shearpl... https://nurevealed.com/wp-content/uploads/2022/12/shearplus-630x401.jpg — 200 — 14.6 KiB — 34 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 — 38 ms — h2https://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 — 23 ms — h3blob:https://nurevealed.com/8228fbbe-17cf-4e5a-975c-b73af71e0f92nurevealed.com/8228fbbe-17cf-4e5a-9... blob:https://nurevealed.com/8228fbbe-17cf-4e5a-975c-b73af71e0f92 — 200 — -1 B — 111 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 — 28 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 — 44 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 — 37 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 — 34 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 — 25 ms — h2
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Third-Party Script Cost
Per-script blocking time, transfer cost, and cache headers
INFO
22% of JavaScript execution is third-party
First-party Third-party 130ms · 0KB · $2/mo
Unattributable
Other
Optional
Execution 130ms
Transfer 0 KB
Monthly Cost $2/mo

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