Static landing page for the Arandu project.
- URL: https://arandu.app
- CDN: Cloudflare global network
- Deploy: Automatic via GitHub Actions
- URL: https://devitools.github.io/arandu/
- CDN: GitHub CDN
- Deploy: Automatic via GitHub Actions (same workflow)
Both deployments happen automatically on push to main when website/** changes:
- Cloudflare Pages - Primary deployment
- GitHub Pages - Fallback deployment (via
gh-pagesbranch)
If Cloudflare experiences issues, use the GitHub Pages URL as an alternative.
cd website
python -m http.server 8000
# or
npx serve .Access: http://localhost:8000
website/
├── index.html # Main page
├── css/
│ └── site.css # Styles
├── js/
│ └── theme.js # Dark/light theme toggle
├── favicon-32x32.png
├── apple-touch-icon.png
└── icon.svg
- Size: ~20KB (minified HTML + CSS + JS)
- Load time: <100ms (with CDN)
- 100% static (no build step)