Naming convention
| Type | Convention | Examples |
|---|---|---|
| Components | PascalCase | Navbar, UserCard, LoginForm |
| Files (components) | PascalCase | ProductList.tsx |
| Props/Variables | camelCase | userName, isActive |
| Functions | camelCase | handleSubmit, formatDate |
| Custom Hooks | use + camelCase | useAuth, useFetchData |
| Constants | UPPER_SNAKE_CASE | API_URL, MAX_RETRIES |
| Folders/non-component files | kebab-case | auth-forms/, ui-components/ |