Eliminate Unused JavaScript Code

How to optimize app.aragon.org

Next.js SiteScore: 48/100Analyzed March 2026Re-analyze this site

Eliminate Unused JavaScript Code

High Impact+25 points estimated

Why It Matters

1.44MB of unused JavaScript is blocking LCP by 900ms and consuming unnecessary network bandwidth.

How to Fix

Use Next.js bundle analyzer to identify unused code in chunks be7d3a00d922ee47.js (99% unused) and dfb9635c8ffa7186.js (72% unused). Implement dynamic imports for heavy components and libraries. Split vendor bundles and lazy load non-critical features using React.lazy() and Suspense.

0Poor

What This Score Means

A score of 48 falls in the "Poor" range (50-89). While it is better than poor (0-49), you should aim for 90+ to provide an optimal user experience and maximize SEO benefits.

This site is slower than approximately 35% of similar sites. The main issues affecting performance are image optimization, JavaScript execution time, and layout stability.

Addressing these issues could improve your conversion rate by 15-20% and boost your search engine rankings.

Core Web Vitals Analysis

LCP

Largest Contentful Paint

5.8s
Poor

Good: < 2.5s

Measures how long it takes for the main content to appear on screen

INP

Interaction to Next Paint

1238ms
Poor

Good: < 200ms

Measures how quickly the page responds to user interactions

CLS

Cumulative Layout Shift

0.00
Good

Good: < 0.1

Measures visual stability - how much content shifts during page load

AI Performance Analysis

This Next.js React application has poor performance with a score of 48/100. The biggest problem is excessive JavaScript that takes 3.5 seconds to execute and blocks the page from becoming interactive for a staggering 17 seconds, with over 1.4MB of unused JavaScript code being downloaded unnecessarily. The site's Largest Contentful Paint occurs at 5.8 seconds, which is far too slow for good user experience. Reducing the JavaScript bundle size by removing unused code and splitting large chunks could dramatically improve loading times and boost the performance score by 30+ points.

Other Optimization Recommendations

Reduce JavaScript Execution Time

High Impact+20 points estimated

Why It Matters:

3.5 seconds of JavaScript execution time is blocking the main thread and causing 2.5 seconds of Total Blocking Time.

How to Fix:

Break up large JavaScript tasks in chunks 5739d2dadd71ce9b.js and be7d3a00d922ee47.js using time-slicing techniques. Move heavy computations to Web Workers. Optimize React components by removing unnecessary re-renders with React.memo and useMemo. Consider server-side rendering optimization in Next.js.

Add fetchpriority=high to LCP Image

Medium Impact+8 points estimated

Why It Matters:

The LCP element (background texture SVG) lacks priority hints, delaying critical resource loading.

How to Fix:

Add fetchpriority='high' attribute to the background texture image in your hero section component. Use Next.js Image component with priority={true} prop instead of standard img tag. Ensure the SVG is preloaded in the document head for faster discovery.

Keep Your Site Fast After Optimization

Once your site is optimized, maintain that speed. Use DeployHQ for zero-downtime, automated deployments—so performance fixes and updates go live safely every time, without breaking your site.

Explore DeployHQ →Trusted by engineering teams shipping high-performance sites

Want to Analyze YOUR Website?

Get AI-powered performance insights with actionable fixes in 30 seconds

More Next.js Speed Tests

Next.js Performance Resources

Frequently Asked Questions