# Project Context ## What This Is [One sentence describing your project] ## Tech Stack TypeScript + React 18 + Vite + TailwindCSS ## Commands - `npm run dev` - Start dev server - `npm test` - Run Vitest tests - `npm run lint` - ESLint + Prettier - `npm run typecheck` - TypeScript compiler - `npm run build` - Production build ## Architecture - `/src/components/` - React components - `/src/hooks/` - Custom React hooks - `/src/pages/` - Page components / routes - `/src/lib/` - Utilities and helpers - `/src/types/` - TypeScript type definitions ## Gotchas - [Add project-specific gotchas here] - Example: Auth tokens in cookies, not localStorage - Example: Use `date-fns`, not moment ## Code Style - Use named exports, not default exports - Prefer `const` arrow functions for components - TailwindCSS for styling (no CSS modules) - React hooks only (no class components)