Repository for the Cosmos CLI website — single-page, mobile-responsive, built with Parcel and Tailwind CSS.
website/
├── src/
│ ├── index.html # single page
│ ├── main.js # entry JS (nav, mobile menu, copy, modal)
│ ├── styles.css # Tailwind + Cosmos custom styles
│ └── assets/ # cosmos.png and other assets
├── tailwind.config.js # Tailwind theme (Cosmos colors, fonts)
├── .postcssrc # PostCSS (Tailwind)
├── package.json
└── README.md
- Parcel — build and dev server
- Tailwind CSS — utility-first styling; theme extends with Cosmos palette (accent, cyan, magenta) and fonts (Outfit, JetBrains Mono)
- Vanilla JS — smooth scroll, nav highlight, mobile hamburger menu, code copy buttons, About modal
git clone https://github.com/cosmos-toolkit/website.git
cd website
pnpm install
pnpm devDev server runs at http://localhost:1234.
pnpm buildOutput goes to dist/ (HTML, CSS, JS, and assets).
Open an issue or PR in this repo or in cosmos-toolkit/cosmos-cli.