diff --git a/README.md b/README.md index 7591728..b2f18cf 100644 --- a/README.md +++ b/README.md @@ -55,4 +55,29 @@ yarn ios - [x] Login with mobile number - [x] Verify OTP - [x] Homescreen - Merchant list -- [x] Profile Screen \ No newline at end of file +- [x] Profile Screen + +## Project Structure + +The project is organized into several directories, each serving a specific purpose: + +
+app +├── core +│ ├── assets # Contains fonts, icons, and images used in the app +│ ├── components # Reusable UI components with corresponding tests +│ ├── model # TypeScript type definitions +│ ├── navigation # App navigation logic +│ ├── schema # Schema validation (e.g., for authentication) +│ ├── services # API services and integrations +│ ├── store # Redux slices and store configuration +│ ├── theme # App-wide styles and color definitions +│ └── utils # Utility functions +└── presentation + ├── auth # Authentication screens and components + ├── home # Home screen and related components + ├── intro # Introductory screens (e.g., splash screen) + └── profile # Profile screen and components ++ +Each directory contains TypeScript and test files to ensure maintainable and scalable code.