Add Explicit Image Dimensions

How to optimize deskfunnel.online

Next.js SiteScore: 69/100Analyzed June 2026Re-analyze this site

Add Explicit Image Dimensions

Medium Impact+8 points estimated

Why It Matters

Missing width/height attributes on images can cause layout shifts during loading.

How to Fix

Add explicit width and height props to all Next.js Image components. For the main image, set width={609} height={917} to match display dimensions. Use aspect-ratio CSS property as fallback for responsive behavior.

0Needs Improvement

What This Score Means

A score of 69 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.

Core Web Vitals Analysis

LCP

Largest Contentful Paint

7.5s
Poor

Good: < 2.5s

Measures how long it takes for the main content to appear on screen

INP

Interaction to Next Paint

168ms
Good

Good: < 200ms

Measures how quickly the page responds to user interactions

CLS

Cumulative Layout Shift

0.09
Good

Good: < 0.1

Measures visual stability - how much content shifts during page load

AI Performance Analysis

This Next.js/React site has poor performance with a score of 69/100, primarily due to an extremely slow Largest Contentful Paint of 7.5 seconds. The biggest culprit is a redirect chain that's adding 780ms of delay before the page even starts loading, followed by images that aren't properly optimized or preloaded. The site is also loading 386 KiB of unused JavaScript and serving resources with poor caching strategies. Fixing the redirect, adding proper image dimensions and preload hints for the LCP image, and eliminating unused code could improve the score by 25+ points and dramatically speed up the initial page load.

Other Optimization Recommendations

Fix LCP Image Loading

High Impact+25 points estimated

Why It Matters:

Your LCP image takes 7.5 seconds to load, causing the worst Core Web Vital score.

How to Fix:

Add fetchpriority='high' to the main image element. Use Next.js Image component with priority prop for automatic optimization. Implement image preloading with <link rel='preload' as='image'> in the head section.

Remove Unused JavaScript Bundle

High Impact+18 points estimated

Why It Matters:

386 KiB of unused JavaScript delays page interactivity by 1.8 seconds.

How to Fix:

Enable Next.js bundle analyzer to identify dead code. Split large chunks using dynamic imports for non-critical components. Remove or defer Facebook Pixel and other tracking scripts until after page load using Next.js Script component with strategy='afterInteractive'.

Keep Your Site Fast After Optimization

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.

Explore DeployHQ →Trusted by engineering teams shipping high-performance sites

Want to Analyze YOUR Website?

Get AI-powered performance insights with actionable fixes in 30 seconds

More Next.js Speed Tests

Next.js Performance Resources

Frequently Asked Questions