Largest Contentful Paint
Good: < 2.5s
Measures how long it takes for the main content to appear on screen
How to optimize olecams.com
Redirects add 770ms delay before any content can load, significantly impacting both FCP and LCP.
Update your Next.js configuration to serve the Spanish version directly without redirecting from the root domain. Add a 'locale' setting in next.config.js and ensure proper routing setup. Update internal links to point directly to /es paths.
A score of 52 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 poor performance with a score of 52/100, indicating significant user experience issues. The biggest problem is a page redirect that's wasting 770ms before users even reach the content, combined with 644KB of unused JavaScript that's severely slowing down page loading times. The site's Largest Contentful Paint takes 7.5 seconds (extremely slow) and Time to Interactive is 15.5 seconds, meaning users wait over 15 seconds before they can properly interact with the page. Eliminating the redirect, removing unused JavaScript code, and optimizing the JavaScript build process could dramatically improve performance by several seconds and boost the score by 30+ points.
Why It Matters:
644KB of unused JavaScript delays LCP by 800ms and wastes bandwidth on unnecessary code.
How to Fix:
Enable Next.js dynamic imports for components not needed immediately. Use next/dynamic with ssr: false for client-only components. Implement code splitting at the page level and analyze your bundle with @next/bundle-analyzer to identify oversized chunks.
Why It Matters:
2.3 seconds of JavaScript execution blocks the main thread, creating 700ms of Total Blocking Time.
How to Fix:
Move Google Analytics and tracking scripts to load asynchronously using Next.js Script component with strategy='afterInteractive'. Break down large JavaScript tasks in dd3eb256d83950cf.js into smaller chunks using setTimeout or requestIdleCallback. Consider server-side rendering more content to reduce client-side JavaScript work.
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.