Largest Contentful Paint
Good: < 2.5s
Measures how long it takes for the main content to appear on screen
How to optimize live.revvtravel.com
Three CSS files are blocking initial render for 750ms, directly delaying LCP by 3.65 seconds.
Implement critical CSS inlining in your Next.js app by extracting above-the-fold styles into a <style> tag in the document head. Use next/dynamic to code-split and lazy load non-critical CSS. Consider using @next/bundle-analyzer to identify which CSS chunks can be deferred.
A score of 41 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 site has severe performance issues with a score of 41/100. The biggest problem is an extremely slow Largest Contentful Paint of 17.2 seconds, primarily caused by render-blocking CSS files that are delaying page loading by 750ms and massive amounts of unused JavaScript (706 KiB). The site is also experiencing significant layout shifts (0.27 CLS score) from unsized images and elements moving around as the page loads. Optimizing CSS delivery, removing unused JavaScript, and fixing layout shift issues could dramatically improve performance and user experience by several seconds.
Why It Matters:
706 KiB of unused JavaScript is loaded unnecessarily, wasting 3.66 seconds and blocking user interactions.
How to Fix:
Use Next.js dynamic imports to code-split large vendor chunks like vendors-d1fb907c (142KB unused). Analyze your bundle with @next/bundle-analyzer and remove unused dependencies. Implement lazy loading for components not needed on initial page load using next/dynamic with ssr: false.
Why It Matters:
Multiple layout shifts (CLS: 0.27) are caused by unsized images and dynamic content loading, hurting user experience.
How to Fix:
Add explicit width and height props to all Next.js Image components to reserve space. Use CSS aspect-ratio or min-height for dynamic content containers. Implement skeleton screens for the main content area that's causing the largest shift (0.18 CLS impact).
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
Unsized brand logo images are causing a CLS score of 0.271, creating jarring visual shifts.
725 KiB of unused JavaScript is significantly slowing page load and blocking the main thread.
Three CSS files are blocking initial render and delaying LCP by 1.95 seconds.
Multiple layout shifts (CLS: 0.27) are caused by unsized images and dynamic content loading, hurting user experience.