Static marketing site for Binary Timber Holdings, LLC. Deployed on Vercel.
No build step required — just open index.html in a browser, or use a simple static server:
npx serve .This repo is connected to Vercel — every push to main triggers an automatic deployment.
git add .
git commit -m "your message"
git push origin mainTo connect a custom domain: Vercel dashboard → Project → Settings → Domains.
- Sign up (free) at web3forms.com
- Create an access key for your receiving email address
- In
index.html, find the line:Replace<input type="hidden" name="access_key" value="REPLACE_ME">
REPLACE_MEwith your key, commit, and push — Vercel auto-deploys.
Replace public/og-image.png with a 1200×630 PNG and update the og:image / twitter:image
meta tag URLs in index.html with your confirmed domain.
Search index.html for TODO: comments — there are three spots for domain and email
placeholders that need real values before launch.
A base SVG is at public/favicon.svg. To generate .ico and apple-touch-icon.png,
upload the SVG to realfavicongenerator.net and drop
the output into public/.
binary-timber/
├── index.html main page
├── css/
│ └── styles.css all styles
├── js/
│ └── main.js scroll reveal + contact form handler
├── public/
│ ├── favicon.svg base favicon (BT logo mark)
│ ├── favicon.ico TODO: generate from favicon.svg
│ ├── apple-touch-icon.png TODO: generate from favicon.svg
│ └── og-image.png TODO: replace with real 1200×630 image
├── .gitignore
└── README.md