diff --git a/CLAUDE.md b/CLAUDE.md index 66e668f..ede4e59 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -49,11 +49,11 @@ backend/ ### Frontend Structure ``` frontend/ -├── packages/ +├── shared/ │ ├── ui-components/ # Shared Gluestack UI components -│ ├── shared-logic/ # Business logic -│ ├── shared-types/ # TypeScript types -│ └── shared-utils/ # Utility functions +│ ├── logic/ # Business logic +│ ├── types/ # TypeScript types +│ └── utils/ # Utility functions └── apps/ ├── web/ # React web app (Vite + TypeScript) ├── mobile/ # React Native app (Expo) diff --git a/docs/3_guidelines/development-guidelines.md b/docs/3_guidelines/development-guidelines.md index e76db1b..4f4f2cd 100644 --- a/docs/3_guidelines/development-guidelines.md +++ b/docs/3_guidelines/development-guidelines.md @@ -52,11 +52,11 @@ knowfoolery/ │ │ ├── security/ # Security utilities │ │ └── utils/ # Common utilities ├── frontend/ -│ ├── packages/ +│ ├── shared/ │ │ ├── ui-components/ # Shared Gluestack UI components -│ │ ├── shared-logic/ # Business logic -│ │ ├── shared-types/ # TypeScript types -│ │ └── shared-utils/ # Utility functions +│ │ ├── logic/ # Business logic +│ │ ├── types/ # TypeScript types +│ │ └── utils/ # Utility functions │ └── apps/ │ ├── web/ # React web app │ ├── mobile/ # React Native app