Static, dependency-free marketing site for WebKaya. Plain HTML + one CSS file — nothing to build, ideal for GitHub Pages.
website/
├── index.html # landing page
├── privacy.html # privacy policy (link this as the Chrome Web Store privacy URL)
├── styles.css # all styles (light + dark, responsive)
└── assets/
├── logo.svg # brand mark (replace with official logo.png — see assets/README.md)
└── README.md
- Copy the contents of this
website/folder into the root of your GitHub Pages repo (soindex.htmlsits at the repo root). - In the repo, Settings → Pages → Build and deployment → Source: Deploy
from a branch, pick your branch and
/root. - Your site is live at
https://<user>.github.io/<repo>/(or your custom domain).
Search-and-replace these placeholders once you know your final URLs:
- Chrome Web Store URL — in
index.html, the install buttons usehref="#"with adata-store-urlmarker on the primary CTA. Replace the#with your published extension URL (https://chromewebstore.google.com/detail/<id>). - Site URL — this page becomes the destination for the extension's
“Learn more” link and the Chrome Web Store privacy policy field.
Point the store's privacy URL at
https://<your-domain>/privacy.html.
The extension's trust bar links to the site. Update it in
examples/webkaya-demo/src/App.tsx (the trust-link href) to your final
domain before shipping a new build.