A lightweight, client-side coding terminal built with React, Vite, Tailwind CSS, Framer Motion, and shadcn/ui style primitives.
- Resizable docked terminal — anchored to bottom, left, and right with draggable top edge.
- Light & dark mode — toggles using Tailwind
dark:utilities (localStorage.theme). - Sidebar tabs — recent chats, file tree, and settings (model/tool selection).
- Command‑prompt UI — type
/help,/model, etc., or arbitrary text (currently echoes back). - Vanilla JS with JSDoc — no TypeScript.
npm install
npm run devThen open http://localhost:5173.
npm run build.
├── src
│ ├── components # UI components
│ ├── App.jsx # top‑level layout
│ └── main.jsx # Vite entry
└── index.html
