Largest Contentful Paint
Good: < 2.5s
Measures how long it takes for the main content to appear on screen
How to optimize olecams.com
645 KiB of unused JavaScript delays LCP by 2.55 seconds and blocks user interactions.
Use Next.js dynamic imports to code-split large components. Run 'npx next build --analyze' to identify unused chunks. Implement tree-shaking by importing only needed functions from libraries instead of entire packages. Configure webpack-bundle-analyzer to remove dead code from your build.
A score of 47 falls in the "Poor" 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 poor performance with a score of 47/100, indicating significant user experience issues. The biggest problem is excessive JavaScript blocking the page, with 6.1 seconds of main-thread work and 645 KiB of unused JavaScript code that's delaying your Largest Contentful Paint by 2.6 seconds. Additionally, the site has an unnecessary redirect that wastes 760ms on every page load, and the page takes a painfully long 16 seconds to become fully interactive. Removing unused JavaScript, eliminating the redirect, and optimizing your Next.js bundle could improve your score by 30+ points and dramatically speed up the site.
Why It Matters:
Multiple redirects add 760ms delay to both LCP and FCP metrics.
How to Fix:
Update your Next.js configuration to serve the Spanish version directly without redirects. In next.config.js, configure proper locale routing with 'redirect: false' for the default locale. Update internal links to point directly to '/es' URLs instead of root paths that redirect.
Why It Matters:
2.7 seconds of JavaScript execution creates 1.25 seconds of Total Blocking Time.
How to Fix:
Split large Next.js chunks using dynamic imports with loading states. Move third-party scripts like Clarity and GTM to load after page interactive using Next.js Script component with strategy='lazyOnload'. Optimize React components by implementing React.memo() for heavy rendering components.
Get AI-powered performance insights with actionable fixes in 30 seconds
More Next.js Speed Tests
Legacy JavaScript polyfills add 20KB of unnecessary code for modern browsers, slowing LCP by 200ms.
CSS files are blocking first paint, delaying FCP by 300ms and hurting user experience.
35% of your JavaScript bundle (24KB) is unused, increasing LCP by 300ms and blocking page interactivity.
Oversized garland images waste 1MB of bandwidth without contributing to core 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.