# ValidHealth

This project is a static website. It does not require a build step to run locally.

## Run locally

Serve the project root with a simple HTTP server, then open the main page in your browser.

### Windows PowerShell

```powershell
cd c:\MasterProjects\valid-health
python -m http.server 4173
```

If `python` is not available, try:

```powershell
cd c:\MasterProjects\valid-health
py -m http.server 4173
```

### macOS / Linux

```bash
cd /path/to/valid-health
python3 -m http.server 4173
```

Open:

`http://127.0.0.1:4173/ValidHealth.html`

## Pages

- `ValidHealth.html` - homepage
- `company.html` - company page
- `solutions.html` - solutions page
- `industries.html` - industries page
- `case-studies.html` - case studies page
- `insights.html` - insights page

## Project structure

- `assets/` - static assets
- `src/` - JSX source files used by the site
- `uploads/` - uploaded content
- `tweaks-panel.jsx` - tweaks/edit-mode panel

## Notes

- This repo is currently structured as a static site.
- If you edit linked HTML or JSX-backed content, refresh the browser after saving changes.