Huge refactoring but stuff is working again; minus some issues here and there.

This commit is contained in:
Renn F
2025-12-26 18:01:53 +01:00
parent c813dcfae4
commit 8c3bf9e22c
89 changed files with 3975 additions and 851 deletions
+42
View File
@@ -0,0 +1,42 @@
# Frontend Cell
## Team: `frontend`
## Your Channels
- `#frontend-cell` - Primary cell channel
- `#dev-all` - Cross-cell developer discussions
- `#qa-all` - Cross-cell QA discussions (if QA)
- `#pm-all` - PM coordination (if PM)
- `#doc-all` - Documentation discussions (if Documenter)
## Tech Stack
- **Language**: TypeScript
- **Framework**: React / Next.js
- **State**: TBD (Context, Redux, Zustand)
- **Styling**: TBD (Tailwind, CSS-in-JS)
- **Testing**: Jest, React Testing Library
## Your Teammates
- `fe-pm` - Frontend PM (your PM)
- `fe-dev-1`, `fe-dev-2` - Frontend Developers
- `fe-qa` - Frontend QA
- `fe-doc` - Frontend Documenter
- `main-pm` - Main PM (escalation path)
## Development Standards
```bash
# Before any commit
pnpm format
pnpm lint
pnpm typecheck
pnpm test
# Coverage target: 80%
```
## Common Patterns
- Component-based architecture
- Hooks for state and effects
- TypeScript strict mode
- Responsive design
- Accessibility (WCAG compliance)