Copy
├── locales/
├── ar/ # Arabic localization files (JSON, translations, etc.)
├── en/ # English localization files (JSON, translations, etc.)
src/
├── assets/ # Images, fonts, icons, and other static assets
└── *.png # Icons & images
├── components/ # Reusable UI components
│ ├── Account/ # Account-related components (login, profile, settings)
│ ├── Cart/ # Shopping cart components (cart list, checkout, etc.)
│ ├── Category/ # Category-related components (category list, filters)
│ └── Home/ # Home screen components (banners, featured items)
├── navigation/ # Navigation configuration (stack, tabs, routes)
├── screens/ # Main application screens (pages composed of components)
│ │ ├── HomeScreen.tsx # Browse restaurants
│ │ ├── CartScreen.tsx # Shopping cart
│ │ ├── Orders.tsx # order
│ │ └── ProfileScreen.tsx # User profile
├── services/ # API calls, data fetching, and business logic
│ ├── api.ts # API integration
│ └── notifications.ts # Push notifications
├── styles/ # Global styles, themes, and shared styling utilities
├── ThemeContext/
│ └── ThemeContext.tsx # Theme provider and custom hooks for dark/light mode
└── utils/ # Utility functions and helpers (formatting, validation)