A dependency-free static website for GAZIOAI — your personal AI assistant. The design mirrors the openclaw.ai website: same dark/light theme system, coral accent palette, animated ASCII dither hero, quick-start code block with tabs, download cards, feature grid, CTA grid, newsletter block, and footer.
- Open this folder in VS Code.
- Open
index.htmlin a browser (or use the Live Server extension). - No
npm installis needed — it is plain HTML/CSS/JS.
Fonts (Switzer + Sentient) load from the Fontshare CDN. Offline, the site falls back to system fonts automatically.
GAZIOAI-Website/
├── index.html ← the whole page
├── script.js ← theme toggle, hero animation, tabs, copy buttons
├── config.js ← YOUR links (edit this)
├── README.md
└── assets/
├── favicon.svg
├── layout.css ← design tokens + base styles (from openclaw.ai)
├── topbar.css ← sticky top navigation
├── home.css ← hero / quick start / features / CTA sections
└── footer.css ← footer
Edit config.js:
| Key | Used for |
|---|---|
github |
Your GitHub repository |
web |
Web app (already https://gazioai.vercel.app/) |
cli |
npm package or CLI release page |
apk |
Direct APK download URL |
desktop |
Desktop installer / release page |
Any key still set to "#" shows a "Set your ... link in config.js" hint on the
page. Once filled in, the hints switch to a green "Ready" label.
- The newsletter form is visual only — wire it to Buttondown/Mailchimp/etc. in
script.js(search for "Newsletter"). - Theme preference is stored in localStorage under
gazio-theme. - The hero animation respects
prefers-reduced-motion.
GAZIOAI.apk is bundled in the site and all Android download links point to it via config.js.