You've reached the home of Viisi - the puzzle game currently on iOS and coming soon to Android.
.
├── assets
│ ├── css/styles.css # Shared design language + responsive layout
│ ├── js/main.js # Simple mobile menu toggle
│ ├── css/demo.css # Styles for the playable browser demo
│ └── js/demo.js # One-puzzle Viisi demo logic (no backend)
│ └── images/ # Optional marketing screenshots
├── index.html # Landing page (features, hero, stats, footer)
├── how-to-play.html # Standalone guide
├── demo.html # Playable one-game web demo
└── README.md
Fonts are loaded from Google Fonts, so there is no build process or dependency installation required.
Any static file server will work (or just open the files directly in a browser). Examples:
- VS Code: use the Live Server extension on
index.html. - Python:
python -m http.server 4173and open http://localhost:4173.
- Commit these files to your repository.
- Push to GitHub and open Settings → Pages.
- Under "Build and deployment", choose Deploy from a branch and select your main branch +
/ (root)folder. - Save. GitHub will publish the static files at
https://<username>.github.io/<repo>/.
Because no Node services or API routes are required, the published site works anywhere that can serve static files.