True Baby Cost β Lighthouse Audit Results
Date: 2026-02-18
Tool: Lighthouse CLI (headless Chrome)
Summary Scores
| Page | Performance | Accessibility | Best Practices | SEO |
|---|---|---|---|---|
| Homepage (strollers) | 78 π‘ | 89 π’ | 100 π’ | 92 π’ |
| Checklist | 75 π‘ | 83 π‘ | 100 π’ | 92 π’ |
Overall: Good foundation! Best Practices and SEO are excellent. Performance and Accessibility have room for improvement.
Core Web Vitals (Homepage)
| Metric | Value | Target | Status |
|---|---|---|---|
| LCP (Largest Contentful Paint) | 2.7s | <2.5s | π‘ Needs improvement |
| FCP (First Contentful Paint) | 2.7s | <1.8s | π‘ Needs improvement |
| CLS (Cumulative Layout Shift) | 0.178 | <0.1 | π‘ Needs improvement |
| TBT (Total Blocking Time) | 280ms | <200ms | π‘ Needs improvement |
Priority Recommendations
π΄ High Priority
-
Reduce CLS (0.178 β <0.1)
- Add explicit
widthandheightto all images - Reserve space for dynamically loaded content
- Check font loading (may cause layout shift)
- Add explicit
-
Improve LCP (2.7s β <2.5s)
- Preload hero image/critical content
- Consider lazy-loading below-fold images
- Inline critical CSS
π‘ Medium Priority
-
Accessibility (89 β 95+)
- Add missing
alttext on images - Improve color contrast ratios
- Ensure all interactive elements are keyboard accessible
- Add ARIA labels where needed
- Add missing
-
Reduce TBT
- Defer non-critical JavaScript
- Consider code splitting if using frameworks
π’ Low Priority
-
Minify CSS
- Run CSS through a minifier before deploy
- Could add to build process
-
Reduce unused JavaScript
- Audit any external scripts
- Remove unused code
Accessibility Issues to Check
- All images have descriptive
alttext - Color contrast meets WCAG AA (4.5:1 for text)
- Form inputs have associated labels
- Interactive elements have focus states
- Skip-to-content link for keyboard users
- Heading hierarchy is logical (h1 β h2 β h3)
Quick Wins
-
Add image dimensions β Prevents CLS
<img src="image.jpg" width="400" height="300" alt="Description"> -
Preload critical fonts
<link rel="preload" href="font.woff2" as="font" type="font/woff2" crossorigin> -
Add loading=βlazyβ to below-fold images
<img src="image.jpg" loading="lazy" alt="Description">
Next Steps
- Fix CLS issues (add image dimensions)
- Audit and fix accessibility issues
- Add font preloading
- Re-run Lighthouse after fixes to verify improvements
Scores above 90 are considered good. Focus on getting Performance to 85+ and Accessibility to 95+.