Largest Contentful Paint
Good: < 2.5s
Measures how long it takes for the main content to appear on screen
How to optimize bhajans.happythoughts.in
The CSS chunk is blocking initial page render and delaying both LCP and FCP by 150ms.
In your Next.js app, move critical CSS inline using styled-jsx or CSS-in-JS. Configure next.config.js to extract and inline critical CSS automatically. Use next/dynamic with loading states to defer non-critical styled components until after first paint.
A score of 92 falls in the "Good" 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 good performance with a score of 92/100, but has a critical issue with element render delay causing extremely slow visual loading. The biggest problem is a massive 5.3-second delay before the main heading renders, making the page appear blank for far too long despite fast server response times. The site also has render-blocking CSS that could save an additional 150ms, and the logo image needs optimization (convert to WebP format and resize from 431x409 to match its 177x168 display size). Fixing the element render delay should be the top priority as it's severely impacting the user's perception of page speed.
Why It Matters:
The LCP element has a massive 5.3 second render delay, severely impacting user experience and Core Web Vitals.
How to Fix:
Move the H1 element higher in the DOM structure and ensure it's not blocked by JavaScript hydration. In your Next.js component, prioritize rendering the title text before other content. Consider using next/dynamic with ssr: true for critical components to avoid client-side render delays.
Why It Matters:
The logo image wastes 56KB and lacks proper dimensions, affecting both loading performance and layout stability.
How to Fix:
Use Next.js Image component with explicit width={177} height={168} props. Convert logo.png to WebP format using next-optimized-images or manual conversion. Set proper cache headers for the logo in next.config.js headers configuration to improve repeat visit performance.
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
2.0 seconds of JavaScript execution time and forced reflows are causing 980ms of main thread blocking.
898KB of unused JavaScript and 98KB of unused CSS are unnecessarily inflating bundle sizes.
CSS files are blocking initial render and delaying LCP by 1.6 seconds.
The LCP element has a massive 5.3 second render delay, severely impacting user experience and Core Web Vitals.