Files
2026-06-17 12:36:06 +02:00

30 lines
871 B
Markdown

# Floating Flows
Premium AcroYoga website for Floating Flows (Freiburg). Static HTML/CSS/JS — no build step.
- `index.html` — landing page (video hero, courses, location, reviews, booking, photo carousel, contact)
- `courses.html` — full course details
- `about.html` — about / story
- `css/` — design system (`tokens.css`) + styles (`styles.css`)
- `assets/` — images, video, brand
## Deploy (Coolify + Dockerfile)
This repo ships a `Dockerfile` that serves the static files with nginx on port **80**.
In Coolify:
1. **New Resource → Application** from this Git repository.
2. **Build Pack:** `Dockerfile`.
3. **Port:** `80`.
4. **Domain:** `floatingflows.george1.dev` (ensure DNS `A`/`CNAME` points at the Coolify host).
5. Deploy.
## Run locally
Any static server works, e.g.:
```bash
python3 -m http.server 4599
# open http://localhost:4599
```