Skip to content

Reyanda/reyanda.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reyanda — Company Website

Deploy to GitHub Pages License: MIT

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.io for GitHub Pages to serve it at the root org domain. Rename via Settings → Rename repository.


Pages

Route Description
/ Main landing page — philosophy, projects, open source section
/projects/manimr/ manimR subpage — links through to reyanda.github.io/manimR (separate repo)

Repository structure

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

Tech stack

  • 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

Enabling GitHub Pages

  1. Go to Settings → Pages in this repository
  2. Under Source, select GitHub Actions
  3. Push to main — the workflow deploys automatically

The site will be live at:

https://<your-org>.github.io/<repo-name>/

Local development

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@latest

Then open http://localhost:8080 in your browser.


Design system

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

Projects featured

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

Contributing

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.


License

Website content and code © 2024 Reyanda. Released under the MIT License.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors