Largest Contentful Paint
Good: < 2.5s
Measures how long it takes for the main content to appear on screen
How to optimize majesticrules.fun
63KB of unused JavaScript is delaying LCP by 450ms and wasting bandwidth.
Analyze your Next.js bundle with @next/bundle-analyzer to identify unused code. Configure Yandex Metrica to load only essential features or consider replacing with a lighter analytics solution. Use dynamic imports for non-critical components to enable code splitting.
A score of 70 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 concerning performance issues with a score of 70/100, primarily caused by excessive JavaScript that's slowing down the page. The biggest problem is a massive 1.4 seconds spent executing JavaScript, with nearly half of the code being unused (63 KiB of waste), which is delaying your Largest Contentful Paint to a poor 4.9 seconds. The Yandex analytics script alone accounts for much of this bloat, using 46% more code than necessary. Removing unused JavaScript, optimizing your build process to avoid unnecessary polyfills, and implementing better caching strategies could significantly improve load times and user experience.
Why It Matters:
1.4 seconds of JavaScript execution time is blocking the main thread and delaying interactivity.
How to Fix:
Update your Next.js build target to modern browsers (ES2017+) to eliminate unnecessary polyfills and save 14KB. Move Yandex Metrica initialization to useEffect with a delay or load it after user interaction. Consider using Next.js Script component with strategy='afterInteractive' for analytics.
Why It Matters:
Poor caching strategy wastes 74KB on repeat visits and slows LCP by 300ms.
How to Fix:
Configure your CDN or hosting provider to set cache headers for static assets to 1 year (31536000 seconds). For Yandex Metrica, implement a service worker to cache the analytics script locally. Ensure Next.js static assets use immutable cache headers with proper versioning.
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
655KB of unused JavaScript increases load time by 3.1 seconds and blocks main thread execution.
Resource load delay of 4,613ms for LCP image makes it undiscoverable and prevents fast loading.
TTFB of 1,028ms and redirect chain waste 1,830ms, severely delaying LCP by 20+ seconds.
Poor caching configuration forces users to re-download resources on repeat visits, missing opportunities for faster load times.