The official website for Reyanda — a technology company with a hybrid approach to software: open source where community drives value, proprietary where sustained investment and guarantees are required.
Live site: https://reyanda.github.io
Note: This repo must be named
reyanda.github.iofor GitHub Pages to serve it at the root org domain. Rename via Settings → Rename repository.
| Route | Description |
|---|---|
/ |
Main landing page — philosophy, projects, open source section |
/projects/manimr/ |
manimR subpage — links through to reyanda.github.io/manimR (separate repo) |
Reyanda/
├── index.html # Main landing page
├── css/
│ └── style.css # Shared design system & tokens
├── js/
│ └── main.js # Scroll effects, reveal animations, counters
├── projects/
│ └── manimr/
│ ├── index.html # manimR product subpage
│ ├── manimr.css # manimR-specific styles (violet theme)
│ └── manimr.js # manimR animations & copy-to-clipboard
├── assets/ # Static assets (icons, images)
├── .github/
│ └── workflows/
│ └── pages.yml # GitHub Actions — auto-deploy on push to main
├── _config.yml # GitHub Pages / Jekyll config
├── .nojekyll # Disables Jekyll processing (pure static site)
└── README.md
- Pure HTML5 / CSS3 / Vanilla JS — zero frameworks, zero build step
- Fonts: Inter + JetBrains Mono via Google Fonts
- Animations: CSS keyframes, SVG
<animate>/<animateTransform>, IntersectionObserver - Deployment: GitHub Actions → GitHub Pages
- Go to Settings → Pages in this repository
- Under Source, select GitHub Actions
- Push to
main— the workflow deploys automatically
The site will be live at:
https://<your-org>.github.io/<repo-name>/
No build step required. Serve the repo root with any static file server:
# Python (built-in)
python3 -m http.server 8080
# Node.js (npx)
npx serve .
# Go
go run golang.org/x/tools/cmd/present@latestThen open http://localhost:8080 in your browser.
All design tokens are CSS custom properties defined at the top of css/style.css:
| Token | Value | Usage |
|---|---|---|
--bg |
#05050a |
Page background |
--accent |
#6366f1 |
Primary accent (indigo) |
--accent-2 |
#a855f7 |
Secondary accent (violet) — manimR theme |
--accent-3 |
#06b6d4 |
Tertiary accent (cyan) |
--grad-1 |
indigo → violet | Primary gradient |
--grad-2 |
cyan → indigo | Secondary gradient |
--font-sans |
Inter | Body & headings |
--font-mono |
JetBrains Mono | Code blocks |
| Project | Type | Language | Page |
|---|---|---|---|
| manimR | Open Source | R | /projects/manimr/ · reyanda.github.io/manimR |
| DataForge | Open Source | Rust / Python | Coming soon |
| Reyanda Platform | Proprietary | — | Coming soon |
| Sentry Vault | Proprietary | Go | Coming soon |
| BioKit R | Open Source | R | Coming soon |
| EdgeMesh | Hybrid / Open-core | Go / Rust | Coming soon |
This repository hosts the website only. To contribute to individual projects, see their own repositories:
To report a bug or suggest an improvement to the website itself, open an issue.
Website content and code © 2024 Reyanda. Released under the MIT License.