Largest Contentful Paint
Good: < 2.5s
Measures how long it takes for the main content to appear on screen
How to optimize codeart.mk
The LCP video has 4.7 seconds of element render delay and lacks fetchpriority optimization.
Add fetchpriority='high' to the video element that serves as LCP. Preload the video poster image using <link rel='preload' as='image' href='/images/video-placeholder.webp'>. Consider using a lighter video format or optimized poster image for faster initial render.
A score of 56 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 website has poor performance with a score of 56/100, indicating significant user experience issues. The biggest problem is excessive JavaScript execution taking over 3 seconds, which is blocking the main thread and preventing user interactions - your page doesn't become interactive until 10.6 seconds, which is extremely slow. The site is also serving an unnecessarily large 12MB video file and oversized images that aren't properly optimized for mobile devices. Reducing JavaScript bundle sizes, optimizing the video file, and implementing responsive images could improve your score by 30+ points and dramatically speed up load times for your users.
Why It Matters:
182 KiB of unused JavaScript is delaying LCP by 950ms and blocking main thread for 1.6 seconds.
How to Fix:
Enable Next.js code splitting by using dynamic imports for non-critical components. Remove unused polyfills by updating your Babel config to target modern browsers only. Defer third-party scripts (Facebook Pixel, Google Analytics) using Next.js Script component with strategy='afterInteractive'.
Why It Matters:
Images are oversized by 131 KiB and missing responsive optimization, impacting LCP by 200ms.
How to Fix:
Configure Next.js Image component with proper responsive breakpoints matching your CSS. Use quality={75} instead of quality={100} for blog images. Add sizes='(max-width: 575px) 545px, (max-width: 992px) 975px, 100vw' with correct breakpoint values that match your actual layout.
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.