True Baby Cost SEO & Performance Audit
Date: 2026-02-19 Tool: Lighthouse (Chrome)
Summary Scores (Homepage)
| Category | Score | Status |
|---|---|---|
| Performance | 78% | π‘ Needs work |
| SEO | 92% | π’ Good |
| Accessibility | 88% | π‘ Needs work |
| Best Practices | 100% | π’ Perfect |
Critical Issues (Score = 0)
1. β Color Contrast
Problem: Some text doesnβt have enough contrast against background Impact: Accessibility, readability Fix: Check muted text colors, ensure 4.5:1 ratio minimum
2. β Heading Order
Problem: H1 β H3 (skipping H2) or similar Impact: Screen readers, SEO structure Fix: Ensure sequential heading order (H1 β H2 β H3)
3. β Link Distinguishability
Problem: Links only differ by color, no underline/style Impact: Colorblind users canβt identify links Fix: Add underline or other visual indicator to links
4. β Missing robots.txt
Problem: No robots.txt file Impact: Search engine crawling guidance Fix: β FIXED - Created robots.txt
5. β Missing sitemap.xml
Problem: No sitemap for search engines Impact: Crawl efficiency Fix: β FIXED - Created sitemap.xml
Performance Issues
Largest Contentful Paint (LCP): 39%
Problem: Main content takes too long to render Causes:
- Google Fonts loading (render-blocking)
- Large inline CSS
Fixes:
- Add
font-display: swapto font loading - Preload critical fonts
- Consider self-hosting fonts
First Contentful Paint (FCP): 60%
Problem: First paint is slow Fixes:
- Reduce render-blocking resources
- Inline critical CSS
- Defer non-critical JS
Unminified CSS: 50%
Problem: CSS could be smaller Fix: Minify CSS in production (or accept for now since itβs readable)
Quick Wins (Can Fix Now)
1. Create robots.txt β DONE
User-agent: *
Allow: /
Sitemap: https://truebabycost.com/sitemap.xml
2. Create sitemap.xml β DONE
All 8 pages included with priorities
3. Fix heading order
Check each page for sequential H1 β H2 β H3
4. Add link underlines
a {
text-decoration: underline;
text-underline-offset: 2px;
}5. Font loading optimization
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="...fonts..." rel="stylesheet" media="print" onload="this.media='all'">Accessibility Fixes Needed
| Issue | Pages Affected | Fix |
|---|---|---|
| Color contrast | All | Increase text color darkness |
| Heading order | Check all | Sequential headings |
| Link style | All | Add underlines |
| Form labels | Checklist | Ensure all inputs have labels |
| Alt text | Stroller images | Add descriptive alt text |
Recommended Priority
- Now: Deploy robots.txt + sitemap.xml β
- Today: Fix heading order and color contrast
- This week: Font optimization for LCP
- Later: Image optimization, lazy loading
Notes
- Best Practices at 100% is excellent
- SEO at 92% is strong
- Performance issues are mostly font-related
- Accessibility fixes are quick CSS changes