# Website

Static website for `DustCrawl Software`, with a linked game subpage for
`The Vathir Dominion: First Pit`.

## Structure
- `index.html`
  - company homepage for `https://dustcrawl.com/`
- `games/first-pit/index.html`
  - game page for `https://dustcrawl.com/games/first-pit/`
- `styles.css`
- `script.js`
- `assets/images/`
- `assets/fonts/`

## Local Preview
From the repo root:

```bash
python3 -m http.server 8787 --directory website
```

Then open:
- `http://127.0.0.1:8787/`
- `http://127.0.0.1:8787/games/first-pit/`

If you open the HTML files directly from disk instead of running a local server,
use:
- `website/index.html`
- `website/games/first-pit/index.html`

## Cloudflare Pages Setup
Use a Pages project, not a Worker, for this folder.

1. In Cloudflare, go to `Workers & Pages`.
2. Click `Create application`.
3. Choose `Pages`.
4. Connect your Git repository.
5. For the production branch, choose the branch you want Cloudflare to deploy.
6. Set:
   - Framework preset: `None`
   - Build command: leave empty
   - Build output directory: `website`
7. Save and deploy.

## Domain Shape
After deployment, attach:
- `dustcrawl.com` to the Pages project root
- optional `www.dustcrawl.com` redirect if you want it

The site will then serve:
- `https://dustcrawl.com/`
- `https://dustcrawl.com/games/first-pit/`

## Safe First Edits
- Replace the placeholder `mailto:` links in the HTML files
- Replace the placeholder social links
- Swap or add screenshots in `assets/images/`
- Refine copy without changing the zero-build deployment setup
