Eliminate Render Blocking CSS

How to optimize agileontheweb.com

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

Eliminate Render Blocking CSS

High Impact+18 points estimated

Why It Matters

Two CSS files are blocking initial render and delaying LCP by 450ms.

How to Fix

Inline critical CSS for above-the-fold content in your Next.js layout component. Use next/dynamic with ssr: false for non-critical styles. Consider splitting CSS using Next.js built-in CSS code splitting to load only necessary styles per page.

0Needs Improvement

What This Score Means

A score of 58 falls in the "Needs Improvement" 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

4.4s
Poor

Good: < 2.5s

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

INP

Interaction to Next Paint

73ms
Good

Good: < 200ms

Measures how quickly the page responds to user interactions

CLS

Cumulative Layout Shift

1.96
Poor

Good: < 0.1

Measures visual stability - how much content shifts during page load

AI Performance Analysis

This Next.js/React site has poor performance with a score of 58/100, primarily due to severe layout stability issues. The biggest problem is massive layout shifts (CLS score of 1.96) caused by an unsized video element in the hero section that shifts content around as the page loads. Additionally, render-blocking CSS files are delaying initial page rendering by 450ms, and there's 27KB of unused JavaScript that could be removed. Fixing the video element sizing and deferring non-critical CSS could dramatically improve both visual stability and loading speed, potentially boosting the performance score by 30+ points.

Other Optimization Recommendations

Fix Video Element Layout Shifts

High Impact+25 points estimated

Why It Matters:

Unsized video elements are causing a severe CLS score of 1.955, significantly harming user experience.

How to Fix:

Add explicit width and height attributes to the hero video element. Use CSS aspect-ratio property to maintain responsive behavior. Consider using a placeholder image with identical dimensions while the video loads to prevent layout jumps.

Remove Legacy JavaScript Polyfills

Medium Impact+8 points estimated

Why It Matters:

Unnecessary polyfills add 11KB of unused code and delay LCP by 150ms for modern browsers.

How to Fix:

Update your Next.js browserslist configuration to target only modern browsers. Remove polyfills for Array.prototype.at, Array.flat, and Object.hasOwn since they're widely supported. Use Next.js's built-in modern JavaScript output by setting experimental.esmExternals to true in next.config.js.

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