This is the static /docs site for GeoHeatWhisper that makes your content crawlable by LLMs and search engines, even though your main app is a Lovable React SPA.
index.html - Documentation landing pagehow-it-works.html - Step-by-step guide to geo-grid trackingfeatures.html - Complete feature breakdownpricing.html - Pricing plans comparisonuse-cases.html - Real-world applicationsfaq.html - Frequently asked questionsCreate a new repo called geoheatwhisper-docs (or any name)
docs/ folder and llms.txtmain, folder: / (root)https://yourusername.github.io/geoheatwhisper-docs/docs.geoheatwhisper.com:
CNAME file to your repo with content: docs.geoheatwhisper.comyourusername.github.io# Clone or create a new repo
git init geoheatwhisper-docs
cd geoheatwhisper-docs
# Copy files into the repo
cp -r /path/to/docs .
cp /path/to/llms.txt .
# Commit and push
git add .
git commit -m "Initial docs site"
git branch -M main
git remote add origin https://github.com/yourusername/geoheatwhisper-docs.git
git push -u origin main
# Enable Pages via Settings > Pages in GitHub web interface
Once deployed, update your main Lovable app to link to the docs:
<a href="https://docs.geoheatwhisper.com">Documentation</a>
# GeoHeatWhisper Documentation
> For comprehensive documentation, visit https://docs.geoheatwhisper.com
## Key Pages
- Documentation: https://docs.geoheatwhisper.com/
- How It Works: https://docs.geoheatwhisper.com/how-it-works.html
- Features: https://docs.geoheatwhisper.com/features.html
- Pricing: https://docs.geoheatwhisper.com/pricing.html
If you prefer not to use GitHub Pages:
To update docs after initial deploy:
Once live, help search engines discover your docs:
Before going live, test locally:
# Use Python's built-in HTTP server
cd docs
python -m http.server 8000
# Or use Node's http-server
npx http-server . -p 8000
Visit http://localhost:8000 to preview.