Largest Contentful Paint
Good: < 2.5s
Measures how long it takes for the main content to appear on screen
How to optimize potenciados.com
99KB of unused JavaScript is being loaded unnecessarily, contributing to slower Time to Interactive (4.1s).
Use Next.js dynamic imports with next/dynamic for components not needed on initial render. Analyze your bundle with @next/bundle-analyzer to identify large chunks. Move third-party scripts to Next.js Script component with strategy='lazyOnload' for non-critical functionality.
A score of 98 falls in the "Good" 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 React site has excellent performance with a score of 98/100, indicating very fast loading times for users. The biggest remaining issue is render-blocking CSS that's delaying your page's initial display by 210 milliseconds, specifically a CSS file that's preventing content from appearing quickly. Additionally, the site is loading about 99 KB of unused JavaScript code that could be removed or deferred to further optimize performance. While these issues exist, they're relatively minor given the already high performance score, but addressing the render-blocking CSS could provide noticeable improvements to your Core Web Vitals.
Why It Matters:
The main CSS file is blocking page render, delaying LCP by 200ms and FCP by 200ms.
How to Fix:
Split your CSS bundle in Next.js by creating critical CSS inline and loading non-critical styles asynchronously. Use next/dynamic with ssr: false for components with heavy CSS. Consider using CSS-in-JS libraries like styled-components to automatically split CSS by component.
Why It Matters:
The JetBrains Mono font (22KB) is on the critical path with 1.85s load time, potentially causing layout shifts.
How to Fix:
Add a <link rel='preload' as='font'> tag in your Next.js _document.js for jetbrains-mono-600.woff2. Use font-display: swap in your CSS to prevent invisible text during font swap. Consider using next/font for automatic font optimization in Next.js 13+.
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
The JetBrains Mono font (22KB) is on the critical path with 1.85s load time, potentially causing layout shifts.
The main CSS file is blocking page render, delaying LCP by 200ms and FCP by 200ms.
1.3MB of unused JavaScript blocks the main thread for 1.7 seconds, preventing user interactions.
Unsized images cause 0.295 CLS score, creating jarring content jumps that harm user experience.