Skip to content

RQM-Technologies-dev/website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

RQM Technologies – Website

The central public landing page for the RQM Technologies quantum software ecosystem.


What This Is

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)

Running Locally

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 src

Static Deployment

The entire site is contained in the src/ directory. Deploy it by copying those files to any static host.

Vercel

# In repo root
npx vercel --yes
# Set the output/root directory to "src"

Bluehost / cPanel Static Hosting

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.

GitHub Pages

Enable GitHub Pages from the src/ directory:

  1. Go to Settings → Pages
  2. Set source to the branch and folder / (root) or /src
  3. Commit — the site is live at https://rqm-technologies-dev.github.io/website

Remaining Placeholder

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.


Repository Structure

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

Design Notes

  • Dark theme (#0d0f14 background)
  • 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

Releases

No releases published

Packages

 
 
 

Contributors