The central public landing page for the RQM Technologies quantum software ecosystem.
A static, single-page website that serves as the entry point for the RQM software stack.
It covers:
- What the platform is and what problem it solves
- A visual architecture overview (
rqm-core → rqm-compiler → backends) - A table of every repository in the ecosystem and its role
- A runnable code example demonstrating the cross-backend workflow
- Links to all GitHub repositories and documentation
The site does not contain:
- Signal-processing or math library code
- Research notebooks
- A docs system (that lives in
rqm-docs)
The site is plain static HTML — no build step required.
Open src/index.html directly in a browser, or serve it with any local HTTP server:
# Python 3 (no install needed)
cd src
python -m http.server 8080
# → open http://localhost:8080# Node (npx serve, no global install needed)
npx serve srcThe entire site is contained in the src/ directory. Deploy it by copying those files to any static host.
# In repo root
npx vercel --yes
# Set the output/root directory to "src"Upload the contents of src/ (including styles.css, config.js, index.html) into the
public_html directory via cPanel File Manager or FTP.
Copy public/favicon.svg to the same directory.
Enable GitHub Pages from the src/ directory:
- Go to Settings → Pages
- Set source to the branch and folder
/ (root)or/src - Commit — the site is live at
https://rqm-technologies-dev.github.io/website
| Location | Placeholder | Replace With |
|---|---|---|
src/index.html |
/og-image.png |
real social preview image (1200×630 PNG) |
All other URLs are live and centrally managed in src/config.js.
website/
├── public/
│ ├── .gitkeep
│ └── favicon.svg ← site icon (SVG)
├── src/
│ ├── index.html ← main landing page
│ ├── styles.css ← all styles (dark theme)
│ └── config.js ← repo URLs & site metadata
├── AGENTS.md ← agent instructions (do not delete)
└── README.md ← this file
- Dark theme (
#0d0f14background) - Inter for body text, JetBrains Mono for code
- Fully responsive (desktop + mobile)
- No framework dependency — pure HTML/CSS/JS
- All GitHub URLs use
rel="noopener"for security