Static marketing landing page and a mission-control mockup for Mir[AI]ge.
No build step: plain HTML, the MIR[AI]GE design tokens (colors_and_type.css + fonts/),
and React loaded from a CDN with Babel transpiling the .jsx files in the browser.
.
├── index.html # the landing page → /
├── landing/ # landing components (Hero, SpecSheet, …) loaded by index.html
├── console/ # operator console mockup → /console
│ ├── index.html
│ └── *.jsx
├── colors_and_type.css # design tokens + @font-face
├── fonts/ # self-hosted woff2 (Rajdhani, Syncopate, …)
├── assets/ # logo, topology, architecture diagrams, imagery
└── vercel.json
python3 -m http.server 8000
# landing → http://localhost:8000/
# console → http://localhost:8000/console/It's a fully static site - no framework, no build step, no Next.js required.
- Import this repo on vercel.com/new.
- Framework Preset: "Other" · leave Build Command and Output Directory empty (the repo root is the site).
- Deploy.
/serves the landing,/consoleserves the mission-control mockup.
Works the same on Netlify, GitHub Pages, S3, or any static host - serve the directory as-is.
Loaded from CDN: React 18 + Babel standalone (for in-browser JSX). It works as-is; for a faster production build you can pre-transpile the JSX and pin/self-host those scripts.