Skip to content
https://trendgraphai.com/design-partner

Performance

· 25 checks — Lighthouse + waterfall + sustainability rolled into one auditable list.
SCORE
89
GRADE
B
FIX
2
REVIEW
6
PASS
15
INFO
2

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

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

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

2.42 s

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

3.04 s

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

4.72 s

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

0.072

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

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

10.51 s

Page Load Progression

413 ms
827 ms
1.2 s
1.7 s
2.1 s
2.5 s
2.9 s
3.3 s
Checks
25
15 PASS 6 REVIEW 2 FIX
F
JS Execution Cost
Action
9819ms total JS execution
FIX
9819ms total JS execution
Warning::
https://trendgraphai.com/assets/vendor-graph-BRpqI...: 8976ms CPU time
Warning::
https://trendgraphai.com/assets/vendor-ui-azO1A_uD...: 332ms CPU time
Warning::
Unattributable: 331ms CPU time
Info::
https://trendgraphai.com/design-partner: 180ms CPU time

Main Thread Breakdown

Script Evaluation 82% Other 13%
ScriptTotalScriptingParse/CompileParty
https://trendgraphai.com/assets/vendor-graph-BRpqIckS.js8976ms7828ms2ms1st
https://trendgraphai.com/assets/vendor-ui-azO1A_uD.js332ms233ms0ms1st
Unattributable331ms11ms0ms1st
https://trendgraphai.com/design-partner180ms50ms1ms1st
D
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
Info::
Last-Modified header present

No Cache-Control header

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

B
JS Bundles
7 scripts, 133 KB unused
REVIEW
7 scripts, 133 KB unused
Warning::
https://trendgraphai.com/assets/vendor-graph-BRpqI...: 80 KB unused (54%)
Consider code splitting or tree shaking to reduce unused code.
Warning::
https://trendgraphai.com/assets/index-BFTI8UVF.js: 32 KB unused (60%)
Consider code splitting or tree shaking to reduce unused code.
Warning::
https://trendgraphai.com/assets/GraphCanvas-CiuziS...: 21 KB unused (80%)
Consider code splitting or tree shaking to reduce unused code.
Warning::
https://trendgraphai.com/assets/vendor-ui-azO1A_uD...: unminified — 5 KB could be saved
Info::
Total unused JavaScript: 133 KB
133 KB unused JavaScript

Downloaded but never executed on this page.

ScriptSizeUnusedMinifiedParty
https://trendgraphai.com/assets/vendor-graph-BRpqIckS.js150 KB80 KB (54%)1st
https://trendgraphai.com/assets/index-BFTI8UVF.js53 KB32 KB (60%)1st
https://trendgraphai.com/assets/GraphCanvas-CiuziSkN.js26 KB21 KB (80%)1st
https://trendgraphai.com/assets/vendor-ui-azO1A_uD.js38 KB1st
https://trendgraphai.com/assets/BetaLandingView-DzVUb7rW.js10 KB1st
https://trendgraphai.com/assets/graphVisuals-DGNfkTRR.js1 KB1st
https://trendgraphai.com/assets/GraphLoadingOverlay-BOGH4Kxl.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

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
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
Green Hosting
Action
Whether the site is served from green-energy infrastructure
REVIEW

Green Hosting

No green hosting detected

A+
Page Weight Budget
380 KB transferred, 23 requests
PASS
380 KB transferred, 23 requests
Info::
Page weighs 1.4 MB (380 KB transferred)
Info::
23 HTTP requests
Info::
Estimated 0.08 g CO2 per page load
380 KB / 2.4 MB budget
380 KB transferred
23 requests
0.08 g CO2 per page load
JavaScript 279.3 KiB 74%
Fonts 52.5 KiB 14%
Other 32.0 KiB 8%
CSS 14.7 KiB 4%
HTML 795 B 0%
Other 421 B 0%
Images 0 B 0%
0 2.4 MB 4.9 MB
Under budget
A
Third-Party Impact
23% third-party, 0 ms blocking
PASS
23% third-party, 0 ms blocking
Info::
Third-party code accounts for 23% of page weight (85.9 KiB of 379.6 KiB)
Info::
Third-party blocking time is low (0 ms)
77%
23%
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 0 KB
0 oversized -0 KB
0 legacy format
0 missing dimensions CLS risk
A+
Font Loading
2 fonts (52 KB)
PASS
2 fonts (52 KB)
Info::
2 font(s) use font-display: swap (FOUT risk but functional)

Web fonts

2

52 KB total

Render-blocking

0

of 2

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 FCP 2.4 s LCP 3.0 shttps://fonts.gstatic.com/s/spacegrotesk/v22/V8mDoQDjQSkFtoMM3T6r8E7mPbF4C_k3HqU.woff2V8mDoQDjQSkFtoMM3T6r8E7... https://fonts.gstatic.com/s/spacegrotesk/v22/V8mDoQDjQSkFtoMM3T6r8E7mPbF4C_k3HqU.woff2 — 21.8 KiB — 37 ms — font-display: swaphttps://fonts.gstatic.com/s/jetbrainsmono/v24/tDbv2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKwBNntkaToggR7BYRbKPxDcwgknk-4.woff2tDbv2o-flEEny0FZhsfKu5W... https://fonts.gstatic.com/s/jetbrainsmono/v24/tDbv2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKwBNntkaToggR7BYRbKPxDcwgknk-4.woff2 — 30.6 KiB — 46 ms — font-display: swap
V8mDoQDjQSkFtoMM3T6r8E7... woff2 swap
Size 22 KB
Load time 37 ms
Start 398 ms
Risk FOUT — text flashes from fallback to web font
tDbv2o-flEEny0FZhsfKu5W... woff2 swap
Size 31 KB
Load time 46 ms
Start 399 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)
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
2 hints, 0 missing preconnects
PASS
2 hints, 0 missing preconnects
Info::
Page uses 2 resource hint(s)

Current Resource Hints

preconnect
2
preload
dns-prefetch
prefetch

2 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::
Both `ETag` and `Last-Modified` present -- efficient revalidation supported
The page returns both `ETag` (content hash) and `Last-Modified` (timestamp) headers. Browsers can issue conditional GETs with `If-None-Match` or `If-Modified-Since`; the server returns 304 Not Modified for unchanged content, saving bandwidth. ETag is the more reliable of the two (timestamps fail in DST transitions and clock skew).
A+
Page Weight Inventory
23 resources · 380 KB · 133 KB savings available
PASS
23 resources · 380 KB · 133 KB savings available
Info::
Within 1MB page-weight target
Got: 380 KB
Info::
~133 KB of savings available
Info::
10 third-party resources (23% of weight)
23 resources · 379.6 KiB · 10 third-party Within 1MB page-weight target
JavaScript 74% · 279.3 KiB
Font 14% · 52.5 KiB
Other 8% · 32.0 KiB
CSS 4% · 14.7 KiB
Document 0% · 795 B
Image 0% · 421 B

~133.1 KiB of savings available

Remove unused JavaScript: 133.1 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::
Total JS execution time is 9.8 s -- over the 3.5s budget
Total JavaScript execution (parse + compile + run) across all scripts exceeds 3.5 seconds. On low-end devices that becomes 7-15+ seconds and shows up directly in TBT and INP. Reduce by: tree-shaking unused dependencies, code-splitting (dynamic `import()`), removing or deferring third-party tracking, and replacing heavy frameworks where they're not needed.
A
CSS Performance Depth
1 CSS depth issue(s) detected
PASS
1 CSS depth issue(s) detected
Warning::
5 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
23 requests over 667ms
INFO
0 ms 1.0 s 2.0 s 3.0 s FCP 2.4 s LCP 3.0 shttps://trendgraphai.com/design-partner/design-partner https://trendgraphai.com/design-partner — 200 — 795 B — 94 ms — h2https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swapfonts.googleapis.com/css2?family=Je... https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap — 200 — 1.4 KiB — 96 ms — h2https://trendgraphai.com/assets/index-BFTI8UVF.js/assets/index-BFTI8UVF.js https://trendgraphai.com/assets/index-BFTI8UVF.js — 200 — 53.1 KiB — 94 ms — h2https://trendgraphai.com/assets/vendor-ui-azO1A_uD.js/assets/vendor-ui-azO1A_uD.js https://trendgraphai.com/assets/vendor-ui-azO1A_uD.js — 200 — 37.8 KiB — 101 ms — h2https://trendgraphai.com/assets/index-FGkvBBE6.css/assets/index-FGkvBBE6.css https://trendgraphai.com/assets/index-FGkvBBE6.css — 200 — 6.7 KiB — 39 ms — h2https://trendgraphai.com/assets/BetaLandingView-DzVUb7rW.js/assets/BetaLandingView-DzVUb7rW.js https://trendgraphai.com/assets/BetaLandingView-DzVUb7rW.js — 200 — 10.4 KiB — 39 ms — h2https://trendgraphai.com/assets/GraphCanvas-CiuziSkN.js/assets/GraphCanvas-CiuziSkN.js https://trendgraphai.com/assets/GraphCanvas-CiuziSkN.js — 200 — 26.5 KiB — 69 ms — h2https://trendgraphai.com/assets/vendor-graph-BRpqIckS.js/assets/vendor-graph-BRpqIckS.js https://trendgraphai.com/assets/vendor-graph-BRpqIckS.js — 200 — 150.3 KiB — 65 ms — h2https://trendgraphai.com/assets/graphVisuals-DGNfkTRR.js/assets/graphVisuals-DGNfkTRR.js https://trendgraphai.com/assets/graphVisuals-DGNfkTRR.js — 200 — 720 B — 37 ms — h2https://trendgraphai.com/assets/GraphCanvas-hIvlNvrZ.css/assets/GraphCanvas-hIvlNvrZ.css https://trendgraphai.com/assets/GraphCanvas-hIvlNvrZ.css — 200 — 504 B — 39 ms — h2https://trendgraphai.com/assets/GraphLoadingOverlay-BOGH4Kxl.js/assets/GraphLoadingOverlay-BOGH4Kx... https://trendgraphai.com/assets/GraphLoadingOverlay-BOGH4Kxl.js — 200 — 571 B — 42 ms — h2https://trendgraphai.com/assets/GraphLoadingOverlay-CuKRyW0Y.css/assets/GraphLoadingOverlay-CuKRyW0... https://trendgraphai.com/assets/GraphLoadingOverlay-CuKRyW0Y.css — 200 — 687 B — 47 ms — h2https://trendgraphai.com/assets/BetaLandingView-C5s8TaBz.css/assets/BetaLandingView-C5s8TaBz.cs... https://trendgraphai.com/assets/BetaLandingView-C5s8TaBz.css — 200 — 5.4 KiB — 47 ms — h2https://trendgraphai.com/favicon.svg/favicon.svg https://trendgraphai.com/favicon.svg — 200 — 421 B — 32 ms — h2https://api.trendgraphai.com/api/public/home-graphapi.trendgraphai.com/api/public/hom... https://api.trendgraphai.com/api/public/home-graph — 200 — 31.7 KiB — 277 ms — h2https://api.trendgraphai.com/api/beta/seatsapi.trendgraphai.com/api/beta/seats https://api.trendgraphai.com/api/beta/seats — 200 — 86 B — 176 ms — h2data:image/svg+xml,%3csvg%20fill='%235786FE'%20role='img'%20viewBox='0%200%2024%2024'%20xmlns='http…data:image/svg+xml,%3csvg%20fill='%... data:image/svg+xml,%3csvg%20fill='%235786FE'%20role='img'%20viewBox='0%200%2024%2024'%20xmlns='http… — 200 — 0 B — 0 ms — datadata:image/svg+xml,%3csvg%20role='img'%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/…www.w3.org/2000/… data:image/svg+xml,%3csvg%20role='img'%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/… — 200 — 0 B — 0 ms — datadata:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='256'%20height='260'%20prese…www.w3.org/2000/svg'%20width='256'%... data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='256'%20height='260'%20prese… — 200 — 0 B — 0 ms — datadata:image/svg+xml,%3csvg%20viewBox='0%200%20296%20298'%20xmlns='http://www.w3.org/2000/svg'%20widt…www.w3.org/2000/svg'%20widt… data:image/svg+xml,%3csvg%20viewBox='0%200%20296%20298'%20xmlns='http://www.w3.org/2000/svg'%20widt… — 200 — 0 B — 0 ms — datahttps://api.trendgraphai.com/api/auth/get-sessionapi.trendgraphai.com/api/auth/get-s... https://api.trendgraphai.com/api/auth/get-session — 200 — 239 B — 164 ms — h2https://fonts.gstatic.com/s/spacegrotesk/v22/V8mDoQDjQSkFtoMM3T6r8E7mPbF4C_k3HqU.woff2fonts.gstatic.com/s/spacegrotesk/v2... https://fonts.gstatic.com/s/spacegrotesk/v22/V8mDoQDjQSkFtoMM3T6r8E7mPbF4C_k3HqU.woff2 — 200 — 21.8 KiB — 37 ms — h3https://fonts.gstatic.com/s/jetbrainsmono/v24/tDbv2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKwBNntkaToggR7BYRbKPxDcwgknk-4.woff2fonts.gstatic.com/s/jetbrainsmono/v... https://fonts.gstatic.com/s/jetbrainsmono/v24/tDbv2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKwBNntkaToggR7BYRbKPxDcwgknk-4.woff2 — 200 — 30.6 KiB — 46 ms — h3
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Image Optimization
4 images, 0 KB total, 0 KB wasted
INFO

Image Optimization Audit

Total Images

4

Total Size

0 KB

Oversized

1

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

Send Feedback