Largest Contentful Paint
Good: < 2.5s
Measures how long it takes for the main content to appear on screen
How to optimize preview.desenvolvimentomit.com.br
LCP element has a 9.2 second resource load delay causing extremely poor user experience.
Add priority='high' to the LCP image in Next.js Image component. Implement preload links for critical images in next/head. Optimize the image source URL to avoid unnecessary redirects and use Next.js Image optimization.
A score of 64 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/React site has poor performance with a score of 64/100, indicating significant user experience issues. The biggest problem is an extremely slow Largest Contentful Paint of 5.8 seconds, primarily caused by a massive 9+ second resource load delay that's preventing the main image from appearing quickly. The site is also loading 224 KB of unnecessary JavaScript code that isn't being used, which could be eliminated to save over 1 second of load time. Addressing the image loading delay and removing unused JavaScript could potentially improve the performance score by 25+ points and dramatically enhance user experience.
Why It Matters:
Unused JavaScript wastes 224 KiB and delays LCP by 1.05 seconds.
How to Fix:
Implement Next.js dynamic imports for components not needed on initial load. Use code splitting with React.lazy() for heavy components. Configure webpack-bundle-analyzer to identify and remove unused dependencies from chunks 7405 and 9720.
Why It Matters:
CSS file blocks initial render and delays First Contentful Paint by 250ms.
How to Fix:
Move critical CSS inline using Next.js styled-jsx or CSS-in-JS solutions. Split CSS using Next.js automatic code splitting. Defer non-critical CSS using next/dynamic with ssr: false for below-the-fold components.
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
Render-blocking CSS delays First Contentful Paint by 900ms, preventing users from seeing content quickly.
Redirects add 780ms delay and directly impact LCP by 800ms, creating unnecessary network round trips.
445KB of unused JavaScript increases Time to Interactive to 11.9 seconds, severely impacting user experience.
CSS files are blocking initial render for 940ms, delaying both LCP and FCP by 950ms each.