# DEPLOY.md

## GitHub Pages (static)
```bash
git add .
git commit -m "Ready for Pages"
git push origin main
```
Then enable Pages in repo settings.

## Render (Node API)
1. New → Web Service → connect repo
2. Build: `npm install`
3. Start: `npm start`
4. Set env `PORT` if required (Render injects PORT)

## Netlify (static drag-drop or git)
Drop the `public` / site folder, or connect the repo and set publish directory.
