# agrilink-rwanda
import React, { useState } from "react";
import { Card, CardContent } from "@/components/ui/card";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Textarea } from "@/components/ui/textarea";
import { Leaf, Users, Truck, Phone, MapPin, ShoppingCart } from "lucide-react";
import { motion } from "framer-motion";
export default function AgriLinkRwanda() {
const [role, setRole] = useState("farmer");
return (
{/* NAVBAR */}
AgriLink Rwanda
About
How It Works
Join
Contact
{/* HERO */}
Fair Markets for Rwandan Farmers
We connect farmers directly to buyers using simple technology, fair pricing, and local delivery.
I'm a Farmer
I'm a Buyer
{/* ABOUT */}
Why AgriLink?
Many farmers in Rwanda lose income due to lack of market access and price transparency. At the same time, buyers struggle to find reliable, fresh produce. AgriLink Rwanda bridges this gap by creating a trusted digital and physical marketplace.
Empowered Farmers
Reliable Buyers
Fast Delivery
Youth Jobs
{/* HOW IT WORKS */}
How It Works
1. Register
Farmers register via phone, agent, or website.
2. Match
Buyers place orders and get matched with nearby farmers.
3. Deliver
Produce is collected and delivered quickly.
{/* JOIN FORM */}
Join AgriLink Rwanda
setRole("farmer")}>Farmer
setRole("buyer")}>Buyer
Submit
{/* CONTACT */}
AgriLink Rwanda
Building fair agricultural markets.
Contact
+250 XXX XXX XXX
Rwanda
Partners
Farmers · Buyers · Youth Agents
© {new Date().getFullYear()} AgriLink Rwanda
);
}