Largest Contentful Paint
Good: < 2.5s
Measures how long it takes for the main content to appear on screen
How to optimize pearsoncars.com
Layout shifts (CLS: 0.253) are caused by carousel elements moving during page load, hurting user experience.
Add explicit dimensions to all carousel images in your Rails views using width and height attributes. Reserve space for carousel controls with CSS. Use Rails image helpers with size parameters: image_tag('image.webp', size: '412x309', loading: 'lazy').
A score of 19 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 Ruby on Rails site has severe performance issues with a critically low score of 19/100. The biggest problem is an enormous 12.5 MB page size combined with render-blocking CSS files that delay content from appearing for nearly 4 seconds, resulting in painfully slow load times of 19+ seconds for first content and 44+ seconds for the main image. The site is also plagued by layout shifts (elements jumping around as the page loads) and massive amounts of unused JavaScript and CSS code that could be removed. Fixing the render-blocking resources, compressing images, and removing unused code could dramatically improve performance and make the site usable again.
Why It Matters:
Render-blocking CSS is delaying First Contentful Paint by 3.85 seconds, severely impacting user experience.
How to Fix:
In your Rails application, move critical CSS inline in the <head> section and defer non-critical CSS using media='print' onload="this.media='all'". Use Rails asset pipeline to split CSS into critical and non-critical bundles. Consider using the 'critical' gem to automatically extract above-the-fold CSS.
Why It Matters:
2.2MB of unused JavaScript is blocking the main thread and delaying LCP by 11.85 seconds.
How to Fix:
Audit your Rails application's JavaScript dependencies and remove unused gems from your Gemfile. Use Webpack Bundle Analyzer to identify large unused modules. Defer YouTube embed scripts and reCAPTCHA until user interaction using dynamic imports or the 'defer' attribute.
Get AI-powered performance insights with actionable fixes in 30 seconds
More Ruby on Rails Speed Tests
2.2MB of unused JavaScript and 485KB unused CSS waste bandwidth and slow parsing.
Layout shifts score of 1.03 severely impacts user experience and Core Web Vitals.
Missing width/height attributes cause layout shifts during load, hurting CLS and user experience.
Images are oversized and poorly compressed, wasting 25KB of bandwidth and slowing page load.
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.