Largest Contentful Paint
Good: < 2.5s
Measures how long it takes for the main content to appear on screen
How to optimize koditt.nl
268 KiB of unused JavaScript is blocking the main thread and delaying LCP by 300ms.
Use Next.js dynamic imports to code-split components that aren't immediately needed. Analyze the three largest chunks (0zk_9ift81y8s.js, 0byoph_9e~gjc.js, 0nibsyc31cdcm.js) with webpack-bundle-analyzer. Remove or defer unused third-party libraries until user interaction.
A score of 37 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 severe performance issues with a critically low score of 37/100. The biggest problem is excessive JavaScript execution time, which takes 24.1 seconds for the page to become fully interactive and blocks user interactions for 3.5 seconds. The site is loading 268 KiB of unused JavaScript code and suffering from forced reflows that cause layout thrashing. Reducing JavaScript bundle sizes, removing unused code, and optimizing the React components could improve the score by 40+ points and dramatically enhance user experience.
Why It Matters:
763ms of forced reflows are causing severe main thread blocking and contributing to the 3.5s Total Blocking Time.
How to Fix:
Batch DOM reads and writes in your React components to avoid layout thrashing. Use React's useLayoutEffect instead of useEffect for DOM measurements. Cache element dimensions and avoid reading offsetWidth/offsetHeight in render loops.
Why It Matters:
Missing preconnect to cms.koditt.dev costs 321ms in LCP performance due to connection setup delays.
How to Fix:
Add <link rel='preconnect' href='https://cms.koditt.dev'> to your Next.js _document.js Head component. Also add <link rel='dns-prefetch' href='https://cms.koditt.dev'> as fallback for older browsers.
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
350KB of unused JavaScript and 32KB of unused CSS are unnecessarily blocking the main thread and increasing load times.
CSS and font files are blocking initial render, delaying LCP and FCP by 1.45 seconds.
Three large PNG images (6.3MB total) are causing massive payload size and delaying LCP by 900ms.
Legacy polyfills add 40KB of unnecessary code that modern browsers don't need, slowing LCP by 300ms.