Largest Contentful Paint
Good: < 2.5s
Measures how long it takes for the main content to appear on screen
How to optimize potenciados.com
The JetBrains Mono font (22KB) is on the critical path with 1.85s load time, potentially causing layout shifts.
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+.
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:
99KB of unused JavaScript is being loaded unnecessarily, contributing to slower Time to Interactive (4.1s).
How to Fix:
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.
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
Unnecessary polyfills add 14KB and delay LCP by 150ms for modern browsers.
JavaScript execution blocks the main thread for 2.8 seconds, creating a 770ms potential input delay.
Unused JavaScript wastes 11MB of bandwidth and delays LCP by 55.8 seconds while blocking interactions.
Large JavaScript bundles are causing 1.6s execution time and 200ms blocking time, severely impacting interactivity.