# 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 β¦