Logo Lanfrica

DesmondAde09/agroconnect

Domain:

agriculture

Record type:

software
Creator:
Des
Host:
A farm app to solve some supplies issues in cameroon, and to help local farmers across africa # 🌱 AgroConnect Cameroon - Farm Marketplace App A comprehensive React Native/Expo farm marketplace app tailored for Cameroon's agricultural sector. ## 🎨 Design System Based on the provided UI mockup with: - **Primary Green**: `#1B5E20` (Dark Forest Green) - **Secondary Green**: `#2E7D32` (Medium Green) - **Accent Green**: `#4CAF50` (Light Green) - **Background**: `#F5F5F5` (Off-white) - **Card Background**: `#FFFFFF` (Pure White) - **Text Primary**: `#1A1A1A` (Near Black) - **Text Secondary**: `#757575` (Gray) ## πŸš€ Quick Start ```bash # 1. Navigate to project directory cd cameroon-farm-app # 2. Install dependencies npm install # 3. Start the development server npx expo start # 4. Run on Android (recommended for Cameroon market) npx expo run:android # 5. Or scan QR code with Expo Go app ``` ## πŸ“ Project Structure ``` cameroon-farm-app/ β”œβ”€β”€ app/ # Expo Router file-based navigation β”‚ β”œβ”€β”€ (tabs)/ # Tab navigator screens β”‚ β”‚ β”œβ”€β”€ index.tsx # Home screen (weather + products) β”‚ β”‚ β”œβ”€β”€ farms.tsx # All farms/products listing β”‚ β”‚ β”œβ”€β”€ statistics.tsx # Analytics/statistics β”‚ β”‚ └── profile.tsx # User profile β”‚ β”œβ”€β”€ (auth)/ # Authentication screens β”‚ β”‚ β”œβ”€β”€ login.tsx β”‚ β”‚ β”œβ”€β”€ register.tsx β”‚ β”‚ └── verify-seller.tsx β”‚ β”œβ”€β”€ product/[id].tsx # Product details (dynamic route) β”‚ β”œβ”€β”€ cart.tsx # Shopping cart β”‚ β”œβ”€β”€ checkout.tsx # Checkout with MTN MoMo β”‚ β”œβ”€β”€ seller/ # Seller dashboard screens β”‚ β”‚ β”œβ”€β”€ dashboard.tsx β”‚ β”‚ β”œβ”€β”€ add-product.tsx β”‚ β”‚ └── orders.tsx β”‚ β”œβ”€β”€ admin/ # Super admin screens β”‚ β”‚ β”œβ”€β”€ dashboard.tsx β”‚ β”‚ β”œβ”€β”€ verify-sellers.tsx β”‚ β”‚ └── analytics.tsx β”‚ β”œβ”€β”€ weather.tsx # Full weather screen β”‚ └── _layout.tsx # Root layout β”œβ”€β”€ components/ # Reusable UI components β”‚ β”œβ”€β”€ ui/ …