Logo Lanfrica

dushimec/Agro-link-rwanda

Domain:

agriculture
Creator:
dus
Host:
# Agro Link Rwanda - Mobile UI Preview A mobile-first agriculture marketplace app UI built with pure HTML, CSS, and minimal JavaScript. ## 🌾 About Agro Link Rwanda connects farmers directly with buyers across Rwanda, enabling easy product listing, ordering, and communication. ## πŸ“± Pages 1. **`index.html`** - Home page with product feed 2. **`product.html`** - Product details page 3. **`chat.html`** - Messaging interface 4. **`post-product.html`** - Farmer product posting form 5. **`dashboard.html`** - Farmer dashboard with stats and orders 6. **`login.html`** - Login/signup page 7. **`style.css`** - Shared styles ## 🎨 Design System ### Colors - **Primary Green**: `#22c55e` - Main accent color - **Dark Background**: `#07140c` - Main background - **Dark Secondary**: `#0b2817` - Secondary background - **Light Text**: `#f0fdf4` - Primary text color ### Features - βœ… Mobile-first responsive design (max-width: 420px) - βœ… Centered mobile frame with rounded corners and shadow - βœ… Bottom navigation bar (Home, Post, Orders, Profile) - βœ… Card-based layout with soft shadows - βœ… Rounded corners (12-18px) - βœ… Green primary buttons and outline secondary buttons - βœ… Emoji icons for visual appeal - βœ… Interactive elements with JavaScript ## πŸš€ Getting Started Simply open `index.html` in your browser to view the app. ```bash # Open in default browser start index.html # Windows open index.html # macOS xdg-open index.html # Linux ``` Or use a local server: ```bash # Python 3 python -m http.server 8000 # Node.js (with http-server) npx http-server ``` Then navigate to `localhost` ## πŸ“ Mobile Frame The app uses a centered mobile frame that: - Displays at 420px max width on desktop - Scales to full width on mobile devices - Has rounded corners (24px) on desktop - Removes border radius on mobile for native feel ## πŸ”— Navigation Flow ``` index.html (Home) ↓ product.html (Product Details) ↓ chat.html (Chat with Seller) post-product.html (Post Product) ↓ dashboa …