undefined / programs.html
Syled's picture
now create the farmer portal and it's sections
219403d verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Agricultural Programs | GreenThumb Nexus</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
50: '#f0fdf4',
100: '#dcfce7',
200: '#bbf7d0',
300: '#86efac',
400: '#4ade80',
500: '#22c55e',
600: '#16a34a',
700: '#15803d',
800: '#166534',
900: '#14532d',
},
secondary: {
50: '#fefce8',
100: '#fef9c3',
200: '#fef08a',
300: '#fde047',
400: '#facc15',
500: '#eab308',
600: '#ca8a04',
700: '#a16207',
800: '#854d0e',
900: '#713f12',
}
}
}
}
}
</script>
<script src="https://unpkg.com/feather-icons"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap">
<style>
.program-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.gradient-bg {
background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(250, 204, 21, 0.05) 100%);
}
</style>
</head>
<body class="font-['Poppins'] bg-white text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-sm sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<img class="h-8 w-auto" src="http://static.photos/agriculture/200x200/5" alt="GreenThumb Logo">
<span class="ml-2 text-xl font-bold text-primary-600">GreenThumb Nexus</span>
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="index.html" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Home</a>
<a href="programs.html" class="text-primary-600 border-b-2 border-primary-500 px-3 py-2 text-sm font-medium">Programs</a>
<a href="#" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Resources</a>
<a href="about.html" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">About</a>
<a href="#" class="text-gray-500 hover:text-gray-700 px-3 py-2 text-sm font-medium">Contact</a>
</div>
<div class="flex items-center">
<a href="farmer-portal.html" class="bg-primary-500 hover:bg-primary-600 text-white px-4 py-2 rounded-md text-sm font-medium">Farmer Portal</a>
<button class="md:hidden ml-4">
<i data-feather="menu"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="gradient-bg">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20">
<div class="text-center">
<h1 class="text-4xl md:text-5xl font-bold leading-tight text-gray-900 mb-4">
Our Agricultural <span class="text-primary-600">Programs</span>
</h1>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">
Comprehensive initiatives designed to empower farmers with the tools, knowledge, and support needed for sustainable agricultural success.
</p>
</div>
</div>
</section>
<!-- Programs Section -->
<section class="py-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Program 1 -->
<div class="program-card bg-white rounded-lg shadow-md overflow-hidden transition-all duration-300 ease-in-out">
<div class="bg-primary-500 text-white p-6">
<div class="flex items-center justify-center w-12 h-12 bg-white text-primary-500 rounded-full mb-4">
<i data-feather="droplet" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Water Wise Initiative</h3>
<p class="text-primary-100">Maximize yield with minimal water usage</p>
</div>
<div class="p-6">
<ul class="space-y-3 text-gray-600 mb-6">
<li class="flex items-start">
<i data-feather="check" class="w-5 h-5 text-primary-500 mr-2 mt-0.5 flex-shrink-0"></i>
<span>Drip irrigation subsidies</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-5 h-5 text-primary-500 mr-2 mt-0.5 flex-shrink-0"></i>
<span>Soil moisture monitoring systems</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-5 h-5 text-primary-500 mr-2 mt-0.5 flex-shrink-0"></i>
<span>Rainwater harvesting training</span>
</li>
</ul>
<a href="#" class="text-primary-500 hover:text-primary-600 font-medium inline-flex items-center">
Program Details <i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</a>
</div>
</div>
<!-- Program 2 -->
<div class="program-card bg-white rounded-lg shadow-md overflow-hidden transition-all duration-300 ease-in-out">
<div class="bg-secondary-500 text-white p-6">
<div class="flex items-center justify-center w-12 h-12 bg-white text-secondary-500 rounded-full mb-4">
<i data-feather="leaf" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Organic Transition Program</h3>
<p class="text-secondary-100">From conventional to certified organic</p>
</div>
<div class="p-6">
<ul class="space-y-3 text-gray-600 mb-6">
<li class="flex items-start">
<i data-feather="check" class="w-5 h-5 text-secondary-500 mr-2 mt-0.5 flex-shrink-0"></i>
<span>3-year certification support</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-5 h-5 text-secondary-500 mr-2 mt-0.5 flex-shrink-0"></i>
<span>Premium market access</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-5 h-5 text-secondary-500 mr-2 mt-0.5 flex-shrink-0"></i>
<span>Biological pest control training</span>
</li>
</ul>
<a href="#" class="text-secondary-500 hover:text-secondary-600 font-medium inline-flex items-center">
Program Details <i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</a>
</div>
</div>
<!-- Program 3 -->
<div class="program-card bg-white rounded-lg shadow-md overflow-hidden transition-all duration-300 ease-in-out">
<div class="bg-primary-700 text-white p-6">
<div class="flex items-center justify-center w-12 h-12 bg-white text-primary-700 rounded-full mb-4">
<i data-feather="cpu" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-2">TechFarm Initiative</h3>
<p class="text-primary-200">Precision agriculture for the modern farmer</p>
</div>
<div class="p-6">
<ul class="space-y-3 text-gray-600 mb-6">
<li class="flex items-start">
<i data-feather="check" class="w-5 h-5 text-primary-600 mr-2 mt-0.5 flex-shrink-0"></i>
<span>Drone technology subsidies</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-5 h-5 text-primary-600 mr-2 mt-0.5 flex-shrink-0"></i>
<span>IoT sensor networks</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-5 h-5 text-primary-600 mr-2 mt-0.5 flex-shrink-0"></i>
<span>AI-powered crop analytics</span>
</li>
</ul>
<a href="#" class="text-primary-500 hover:text-primary-600 font-medium inline-flex items-center">
Program Details <i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</a>
</div>
</div>
<!-- Program 4 -->
<div class="program-card bg-white rounded-lg shadow-md overflow-hidden transition-all duration-300 ease-in-out">
<div class="bg-green-600 text-white p-6">
<div class="flex items-center justify-center w-12 h-12 bg-white text-green-600 rounded-full mb-4">
<i data-feather="dollar-sign" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Farm Credit Boost</h3>
<p class="text-green-100">Financial solutions for agricultural growth</p>
</div>
<div class="p-6">
<ul class="space-y-3 text-gray-600 mb-6">
<li class="flex items-start">
<i data-feather="check" class="w-5 h-5 text-green-500 mr-2 mt-0.5 flex-shrink-0"></i>
<span>Low-interest equipment loans</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-5 h-5 text-green-500 mr-2 mt-0.5 flex-shrink-0"></i>
<span>Crop insurance subsidies</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-5 h-5 text-green-500 mr-2 mt-0.5 flex-shrink-0"></i>
<span>Harvest advance payments</span>
</li>
</ul>
<a href="#" class="text-green-500 hover:text-green-600 font-medium inline-flex items-center">
Program Details <i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</a>
</div>
</div>
<!-- Program 5 -->
<div class="program-card bg-white rounded-lg shadow-md overflow-hidden transition-all duration-300 ease-in-out">
<div class="bg-amber-600 text-white p-6">
<div class="flex items-center justify-center w-12 h-12 bg-white text-amber-600 rounded-full mb-4">
<i data-feather="book" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Agri-Education Network</h3>
<p class="text-amber-100">Knowledge for sustainable farming</p>
</div>
<div class="p-6">
<ul class="space-y-3 text-gray-600 mb-6">
<li class="flex items-start">
<i data-feather="check" class="w-5 h-5 text-amber-500 mr-2 mt-0.5 flex-shrink-0"></i>
<span>Mobile training units</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-5 h-5 text-amber-500 mr-2 mt-0.5 flex-shrink-0"></i>
<span>Farmer-to-farmer mentorship</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-5 h-5 text-amber-500 mr-2 mt-0.5 flex-shrink-0"></i>
<span>Digital resource library</span>
</li>
</ul>
<a href="#" class="text-amber-500 hover:text-amber-600 font-medium inline-flex items-center">
Program Details <i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</a>
</div>
</div>
<!-- Program 6 -->
<div class="program-card bg-white rounded-lg shadow-md overflow-hidden transition-all duration-300 ease-in-out">
<div class="bg-blue-600 text-white p-6">
<div class="flex items-center justify-center w-12 h-12 bg-white text-blue-600 rounded-full mb-4">
<i data-feather="truck" class="w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Market Access Program</h3>
<p class="text-blue-100">Connect your harvest to buyers</p>
</div>
<div class="p-6">
<ul class="space-y-3 text-gray-600 mb-6">
<li class="flex items-start">
<i data-feather="check" class="w-5 h-5 text-blue-500 mr-2 mt-0.5 flex-shrink-0"></i>
<span>Cold chain infrastructure</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-5 h-5 text-blue-500 mr-2 mt-0.5 flex-shrink-0"></i>
<span>Direct-to-retail partnerships</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-5 h-5 text-blue-500 mr-2 mt-0.5 flex-shrink-0"></i>
<span>Export facilitation</span>
</li>
</ul>
<a href="#" class="text-blue-500 hover:text-blue-600 font-medium inline-flex items-center">
Program Details <i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- How to Apply Section -->
<section class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">How to Apply</h2>
<p class="text-lg text-gray-600 max-w-2xl mx-auto">
Our simple application process makes it easy to access the programs you need.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="text-center">
<div class="w-16 h-16 bg-primary-100 text-primary-600 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="file-text" class="w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">1. Check Eligibility</h3>
<p class="text-gray-600">
Review program requirements to ensure you qualify before applying.
</p>
</div>
<div class="text-center">
<div class="w-16 h-16 bg-primary-100 text-primary-600 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="edit" class="w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">2. Complete Application</h3>
<p class="text-gray-600">
Fill out the online form with your details and program preferences.
</p>
</div>
<div class="text-center">
<div class="w-16 h-16 bg-primary-100 text-primary-600 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="check-circle" class="w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold text-gray-900 mb-2">3. Get Approved</h3>
<p class="text-gray-600">
Receive confirmation and begin accessing program benefits.
</p>
</div>
</div>
<div class="mt-12 text-center">
<a href="#" class="inline-block bg-primary-500 hover:bg-primary-600 text-white px-8 py-4 rounded-md text-lg font-semibold">
Start Your Application
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
<div>
<h3 class="text-lg font-semibold mb-4">GreenThumb Nexus</h3>
<p class="text-gray-400">
Empowering farmers with innovative agricultural solutions for a sustainable future.
</p>
<div class="flex space-x-4 mt-4">
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="facebook" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="twitter" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="instagram" class="w-5 h-5"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i data-feather="youtube" class="w-5 h-5"></i>
</a>
</div>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="index.html" class="text-gray-400 hover:text-white">Home</a></li>
<li><a href="programs.html" class="text-gray-400 hover:text-white">Programs</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Resources</a></li>
<li><a href="about.html" class="text-gray-400 hover:text-white">About</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Programs</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Water Wise Initiative</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Organic Transition</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">TechFarm Initiative</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Farm Credit Boost</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Market Access</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Contact Us</h3>
<ul class="space-y-2 text-gray-400">
<li class="flex items-start">
<i data-feather="map-pin" class="w-5 h-5 mr-2 mt-1 flex-shrink-0"></i>
<span>Ministry of Agriculture, New Delhi, India</span>
</li>
<li class="flex items-center">
<i data-feather="phone" class="w-5 h-5 mr-2"></i>
<span>+91 1800 123 4567</span>
</li>
<li class="flex items-center">
<i data-feather="mail" class="w-5 h-5 mr-2"></i>
<span>support@greenthumb.gov.in</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm mb-4 md:mb-0">
© 2023 GreenThumb Nexus. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Sitemap</a>
</div>
</div>
</div>
</footer>
<script>
feather.replace();
</script>
</body>
</html>