Landing page for StrawPot, an open-source framework for multi-agent orchestration.
Live at strawpot.com
- Astro: static site generator
- Custom CSS with CSS custom properties (no framework)
- Clash Display + Satoshi fonts
- Deployed to GitHub Pages via GitHub Actions
# Install dependencies
npm install
# Start dev server
npm run dev
# Build for production
npm run build
# Preview production build
npm run previewstrawpot.com/
├── .github/workflows/
│ ├── ci.yml # Build verification on PRs
│ └── deploy.yml # Deploy to GitHub Pages
├── public/
│ ├── favicon.svg
│ ├── favicon.png
│ ├── og-image.png
│ ├── CNAME
│ └── robots.txt
├── src/
│ ├── layouts/Layout.astro # Base layout, fonts, global CSS
│ └── pages/index.astro # Homepage (all sections)
├── astro.config.mjs
└── package.json