The official Radixen website. Static HTML/CSS/JS, no build step.
Live: radixen.com · GitHub Org: github.com/Radixen-Dev
| Layer | Technology |
|---|---|
| Markup | HTML5 |
| Styles | CSS3 (custom properties, grid, clamp) |
| Animations | GSAP 3 + ScrollTrigger |
| Fonts | Exo 2 + JetBrains Mono (Google Fonts) |
| Hosting | Vercel |
No framework. No build toolchain. No dependencies to install.
radixen-web/
├── index.html # All markup
├── style.css # All styles
├── script.js # All interactivity & animation
├── assets/
│ └── logo.png # Radixen logo
├── README.md
└── CONTRIBUTING.md
python3 -m http.server 4242Open http://localhost:4242. No install, no build.
- Hero — Full-viewport intro with particle canvas, animated title, and entry CTAs
- Areas — Six discipline cards: AI/ML, Software Engineering, Web Development, Creative & Interactive, Research & Exploration, Tools & Open Source
- About — What Radixen is, with a disclaimer bar
- Contact — Multi-step interactive flow routing to the correct email address
- Footer — Nav links + GitHub org link
All animations use GSAP. Load order:
DOMContentLoaded→ hero elements hidden immediatelyinitIntro()→ full-screen overlay plays, then callsinitHeroAnimations()initHeroAnimations()→ letter-split title + staggered hero sequenceinitScrollAnimations()→ ScrollTrigger fade-ups on all sectionsinitContactFlow()→ multi-step GSAP slide transitionsinitCursorGlow()→ desktop-only radial glow following cursor
See CONTRIBUTING.md.