Largest Contentful Paint
Good: < 2.5s
Measures how long it takes for the main content to appear on screen
How to optimize jxcs.space
Render blocking CSS is delaying LCP by 900ms and preventing initial page paint.
Move critical CSS inline in Next.js using styled-jsx or CSS-in-JS. Load remaining CSS asynchronously with media='print' then switching to media='all' onload. Use Next.js dynamic imports for component-specific CSS chunks.
A score of 38 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/React site has severe performance problems with a critically low score of 38/100. The biggest issue is excessive JavaScript blocking the main thread for over 39 seconds, causing the page to become interactive only after 37+ seconds - an unacceptable user experience. The site is loading 169KB of unused JavaScript code, with render-blocking CSS files delaying initial page rendering, while poor image optimization (oversized Spotify album art and Steam avatars) further degrades performance. Immediate priorities should be removing unused JavaScript, deferring non-critical scripts, optimizing images to appropriate sizes and modern formats, and implementing code splitting to dramatically reduce the initial bundle size.
Why It Matters:
172KB of unused JavaScript is delaying LCP by 1050ms and wasting bandwidth.
How to Fix:
Enable tree shaking in Next.js webpack config with sideEffects: false. Use dynamic imports for components that aren't immediately needed. Analyze bundle with @next/bundle-analyzer to identify and remove unused dependencies from the three problematic chunks.
Why It Matters:
Missing preconnect hints are causing 300-320ms delays when fetching resources from external domains.
How to Fix:
Add <link rel='preconnect' href='https://cdn.akamai.steamstatic.com'> and similar tags for api.lanyard.rest and avatars.steamstatic.com in Next.js Head component. Limit to the 3 most critical origins to avoid performance degradation.
Get AI-powered performance insights with actionable fixes in 30 seconds
More Next.js Speed Tests
External API calls to Spotify and Steam are adding 300-319ms delays without preconnection optimization.
152KB of unused JavaScript is wasting 910ms of load time and significantly impacting LCP and FCP.
CSS files are blocking initial render and delaying LCP by 800ms with the largest file being 90KB.
Missing preconnect hints are causing 300-320ms delays when fetching resources from external domains.
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.