Fix Footer Layout Shift

How to optimize tokyoportfolio.frontend.stg.vercel.app

Next.js SiteScore: 24/100Analyzed March 2026Re-analyze this site

Fix Footer Layout Shift

High Impact+25 points estimated

Why It Matters

A massive layout shift (0.806 CLS score) from the footer element is severely impacting user experience and Core Web Vitals.

How to Fix

Reserve space for the footer by setting a minimum height in CSS or using CSS Grid with defined track sizes. Ensure all footer content loads simultaneously rather than incrementally. Add skeleton placeholders for any dynamically loaded footer content to prevent layout jumps.

0Poor

What This Score Means

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

Core Web Vitals Analysis

LCP

Largest Contentful Paint

4.4s
Poor

Good: < 2.5s

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

INP

Interaction to Next Paint

568ms
Poor

Good: < 200ms

Measures how quickly the page responds to user interactions

CLS

Cumulative Layout Shift

0.81
Poor

Good: < 0.1

Measures visual stability - how much content shifts during page load

AI Performance Analysis

This Next.js site has severe performance issues with a critically low score of 24/100. The biggest problem is massive layout shift (0.806 CLS) caused by the footer element moving during page load, creating a jarring user experience where content jumps around unexpectedly. The site also suffers from excessive JavaScript execution (4.8 seconds of main thread blocking) and takes over 18 seconds to become interactive, making it nearly unusable on slower devices. Fixing the layout shift by reserving space for the footer and reducing the JavaScript bundle size could dramatically improve both the user experience and performance score by 30+ points.

Other Optimization Recommendations

Optimize JavaScript Bundle Size

High Impact+18 points estimated

Why It Matters:

2.7 seconds of script evaluation time is blocking the main thread and causing 1,030ms Total Blocking Time, preventing user interactions.

How to Fix:

Use Next.js dynamic imports to code-split large components and defer non-critical JavaScript. Remove 289 KiB of unused JavaScript from Google Tag Manager scripts by implementing server-side tracking where possible. Enable React Strict Mode and use React DevTools Profiler to identify performance bottlenecks in your components.

Eliminate Render-Blocking CSS

Medium Impact+12 points estimated

Why It Matters:

770ms of render-blocking CSS delays First Contentful Paint and prevents the page from displaying content quickly.

How to Fix:

Inline critical CSS for above-the-fold content directly in the HTML head. Use Next.js built-in CSS optimization by splitting your CSS files and only loading necessary styles per page. Defer non-critical CSS using the media='print' onload trick or Next.js dynamic imports for component-specific styles.

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