A modern, fully responsive landing page for an AI-powered business-analytics product.
Hand-built with semantic HTML, CSS custom properties, and vanilla JavaScript — no framework, no build step.
Live Demo • Features • Quick Start • Deployment
Neuros AI is a production-style marketing website concept for an AI business-intelligence platform. It is designed to feel premium, load fast, and stay clean across desktop and mobile — while keeping the codebase small, dependency-free, and easy to maintain.
The entire site ships as static assets, so it runs anywhere: open index.html directly or serve it from any static host.
- Live demo: https://luck1y1337.github.io/Neuros-AI/
- Repository: https://github.com/Luck1y1337/Neuros-AI
- Hero with video — inline preview plus a full-screen modal player (overlay click and
Escto close). - Light / dark theme — toggled by a button, persisted in
localStorage, and falling back to the OSprefers-color-schemeon first visit. - Content sections — partners/trust strip, strategy highlights, an auto-scrolling testimonials track, and a trial call-to-action.
- Applications grid — an "Explore more" interaction that progressively reveals additional cards.
- Accessible FAQ accordion — single-open behavior driven by
aria-expanded. - Responsive by default — fluid grids and mobile/tablet/desktop breakpoints with a stable layout at every width.
| Layer | Technology |
|---|---|
| Markup | HTML5 — semantic structure |
| Styling | CSS3 — custom properties, Flexbox, Grid, transitions, media queries |
| Interactions | Vanilla JavaScript (ES6) — theming, modal, accordion, reveal |
| Tooling / CI | GitHub Actions + html-validate for markup validation |
No runtime dependencies and no bundler required.
Neuros-AI/
├── index.html # Single-page markup and content
├── css/
│ └── style.css # Theme variables, layout, and component styles
├── js/
│ └── script.js # Theme toggle, video modal, FAQ, reveal logic
├── picture/ # Image assets (partners, cards, avatars)
├── video/
│ └── intro.mp4 # Hero intro video
├── .github/workflows/ # CI: HTML validation + asset checks
└── .htmlvalidate.json # html-validate configuration
No install or build step is required — this is a static site.
# 1. Clone the repository
git clone https://github.com/Luck1y1337/Neuros-AI.git
cd Neuros-AI
# 2. Serve it with any static server, e.g.:
python -m http.server 8000
# then open http://localhost:8000Or simply open index.html in your browser. In VS Code you can also right-click index.html → Open with Live Server.
None. The site is fully static and requires no configuration, API keys, or secrets to run.
Deploy the repository as-is to any static host — set index.html as the entry point:
- GitHub Pages (currently used for the live demo, served from
main) - Netlify
- Vercel
- Cloudflare Pages
There is nothing to compile; the published output is the source itself.
- Title & favicon — edit the
<head>ofindex.html. - Theme colors — edit
:root(light) and[data-theme="dark"](dark) incss/style.css. - Content & copy — edit
index.html. - Interactions — edit
js/script.js. - Media — replace files in
picture/andvideo/.
To validate your markup locally the same way CI does:
npx html-validate index.html- The project is static only — it has no backend, no database, and no user input processing, which keeps the attack surface minimal.
- No secrets are stored in the repository or its git history;
.gitignoreexcludes environment files, keys, and local artifacts. - Third-party badge images in this README are the only external resources referenced from the docs; the site itself loads all of its assets locally.
If you discover a security issue, please open a private report via the repository's Security tab.
Released under the MIT License. © 2026 Islombek Nuriddinov.