Largest Contentful Paint
Good: < 2.5s
Measures how long it takes for the main content to appear on screen
How to optimize pagespeed.deployhq.com
CSS files are blocking initial render and delaying LCP by 2.2 seconds.
In Next.js, move critical CSS inline using styled-jsx or CSS-in-JS. Split large CSS chunks using dynamic imports with next/dynamic. Preload the Inter font using next/font/google instead of Google Fonts link to eliminate the font chain dependency.
A score of 82 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.
Largest Contentful Paint
Good: < 2.5s
Measures how long it takes for the main content to appear on screen
Interaction to Next Paint
Good: < 200ms
Measures how quickly the page responds to user interactions
Cumulative Layout Shift
Good: < 0.1
Measures visual stability - how much content shifts during page load
This Next.js site has good performance with a score of 82/100, but there's significant room for improvement in loading speed. The biggest issue is render-blocking CSS and font files that are delaying your First Contentful Paint by 2.2 seconds, causing users to wait nearly 3 seconds before seeing any content. The site is also loading 25KB of unused JavaScript code and using outdated JavaScript polyfills that aren't necessary for modern browsers. Optimizing CSS delivery, implementing font preloading, and updating your build process to remove legacy code could easily push your score into the 90s and improve user experience substantially.
Why It Matters:
37% of JavaScript bundle is unused, wasting 25KB and delaying LCP by 150ms.
How to Fix:
Enable tree shaking in Next.js webpack config. Use dynamic imports for components not needed on initial render. Run bundle analyzer with @next/bundle-analyzer to identify and remove unused dependencies from the 9c23f44fff36548a.js chunk.
Why It Matters:
Legacy JavaScript polyfills add unnecessary 13KB for modern browsers.
How to Fix:
Update Next.js config to target modern browsers by setting browserslist to exclude IE and old Chrome versions. Remove polyfills for Array.prototype.at, flat, flatMap and other modern features. Use next/swc compiler with ES2020+ target to eliminate transpilation overhead.
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.
Get AI-powered performance insights with actionable fixes in 30 seconds
More Next.js Speed Tests
Legacy JavaScript polyfills add unnecessary 13KB for modern browsers.
37% of JavaScript bundle is unused, wasting 25KB and delaying LCP by 150ms.
99KB of unused JavaScript is being loaded unnecessarily, contributing to slower Time to Interactive (4.1s).
The JetBrains Mono font (22KB) is on the critical path with 1.85s load time, potentially causing layout shifts.