Initial Volcán Antigua Roasters brand setup
Scaffolds a zero-dependency static site for Netlify: index.html placeholder, Netlify config with security headers and aggressive asset caching, robots/ sitemap, brand README, and an empty assets/ folder for the logo PNGs.
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
# Volcán Antigua Roasters
|
||||
|
||||
Single-origin Guatemalan coffee, roasted in the shadow of the volcanoes of Antigua.
|
||||
|
||||
## Tech stack
|
||||
|
||||
- Single-file HTML — no build step, no bundler, no framework
|
||||
- Embedded base64 WebP images inside `index.html` (zero external image requests for the page itself)
|
||||
- Zero npm dependencies
|
||||
|
||||
## Preview locally
|
||||
|
||||
```bash
|
||||
python3 -m http.server 8000
|
||||
```
|
||||
|
||||
Then open http://localhost:8000
|
||||
|
||||
## Deploy
|
||||
|
||||
**Option A — drag & drop**
|
||||
Drop the `volcan-antigua-roasters/` folder onto https://app.netlify.com/drop
|
||||
|
||||
**Option B — Netlify CLI**
|
||||
```bash
|
||||
netlify deploy --prod
|
||||
```
|
||||
|
||||
## Brand
|
||||
|
||||
**Colors**
|
||||
- Matte Black `#111111`
|
||||
- Gold `#C8A96A`
|
||||
- Cream `#F5F1E8`
|
||||
|
||||
**Fonts**
|
||||
- Display: Playfair Display
|
||||
- Body: Manrope
|
||||
|
||||
## Assets folder
|
||||
|
||||
`index.html` is fully self-contained — every image used by the website is embedded as base64. The `/assets/` folder holds the master logo PNGs for label printing, social media, and business cards. The website does not require these files to render.
|
||||
|
||||
Files in `/assets/`:
|
||||
- `volcan_logo_master.png` — primary lockup
|
||||
- `volcan_logo_transparent.png` — transparent background
|
||||
- `volcan_logo_black.png` — black-on-light variant
|
||||
- `volcan_logo_cream.png` — cream-on-dark variant
|
||||
- `volcan_icon_only.png` — mark only (favicon, app icon, social avatar)
|
||||
- `volcan_antigua_final_label.png` — bag label artwork
|
||||
Reference in New Issue
Block a user