This repository contains the source code for the HexGuard website, deployed at https://hexguard.net via GitHub Pages.
docs/— GitHub Pages site rootindex.html— main landing pagecss/styles.css— site stylesjs/scripts.js— client-side scripts
SECURITY.md— responsible disclosure policyLICENSE— project license
You can preview the static site locally with any static server. Example using Python:
cd docs
python3 -m http.server 8000
# open http://localhost:8000Or using Node.js (http-server):
npx --yes http-server docs -p 8000
# open http://localhost:8000The site is served from the docs/ directory on the main branch using GitHub Pages. Pushing changes to main will automatically update the live site after Pages rebuilds.
- Create a feature branch.
- Make edits under
docs/and validate locally. - Open a Pull Request with a clear description and screenshots where helpful.
Please avoid submitting security-related issues via public PRs or issues.
See SECURITY.md for our reporting policy and scope. Use the repository’s Security tab to submit a private advisory.
See LICENSE for licensing information.