Fix thin homepage content

Pages with almost no crawlable text give Google little to rank and read as low-value — common with JS apps that render an empty shell. Thin content caps how many queries the page can ever match.

How to fix

Ensure the primary content is in the server-rendered HTML (SSR/SSG or prerender for SPAs), not injected only after JS. Cover the topic substantively rather than padding word count.

# verify what Google actually sees
curl -s https://example.com | grep -o '<p>' | wc -l   # ~0 on an empty SPA shell

Detected automatically by the SEOlvl SEO Health audit (check content). Run a free audit or see the full issue library.