forked from omroy07/AgriTech
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmobile-main.html
More file actions
124 lines (120 loc) · 4.77 KB
/
mobile-main.html
File metadata and controls
124 lines (120 loc) · 4.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>AgriTech - Farmer's Dashboard</title>
<link rel="stylesheet" href="mobile-base.css">
<link rel="stylesheet" href="responsive.css">
<link rel="stylesheet" href="mobile-main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<!-- Hero Section -->
<section class="hero-section">
<div class="container">
<h1 class="hero-title">AgriTech Farmer</h1>
<p class="hero-subtitle">Smart farming solutions at your fingertips</p>
</div>
</section>
<!-- Quick Actions -->
<section class="quick-actions">
<div class="container">
<h2 class="action-title">Quick Actions</h2>
<div class="grid">
<a href="crop.html" class="btn">
<i class="fas fa-seedling"></i> Crop Recommendation
</a>
<a href="disease.html" class="btn btn-secondary">
<i class="fas fa-bug"></i> Disease Detection
</a>
<a href="weather.html" class="btn btn-outline">
<i class="fas fa-cloud-sun"></i> Weather
</a>
<a href="marketplace.html" class="btn btn-outline">
<i class="fas fa-shopping-cart"></i> Marketplace
</a>
</div>
</div>
</section>
<!-- Features Grid -->
<section class="container">
<div class="feature-grid">
<a href="crop.html" class="feature-card">
<div class="feature-icon">
<i class="fas fa-seedling"></i>
</div>
<h3 class="feature-title">Crop Recommend</h3>
<p class="feature-desc">Get best crops for your soil</p>
</a>
<a href="disease.html" class="feature-card">
<div class="feature-icon">
<i class="fas fa-bug"></i>
</div>
<h3 class="feature-title">Disease Detect</h3>
<p class="feature-desc">Identify plant diseases</p>
</a>
<a href="yield-prediction.html" class="feature-card">
<div class="feature-icon">
<i class="fas fa-chart-line"></i>
</div>
<h3 class="feature-title">Yield Predict</h3>
<p class="feature-desc">Estimate your harvest</p>
</a>
<a href="plantation.html" class="feature-card">
<div class="feature-icon">
<i class="fas fa-calendar-alt"></i>
</div>
<h3 class="feature-title">Crop Calendar</h3>
<p class="feature-desc">Plan your farming</p>
</a>
<a href="chat.html" class="feature-card">
<div class="feature-icon">
<i class="fas fa-comments"></i>
</div>
<h3 class="feature-title">Community</h3>
<p class="feature-desc">Connect with farmers</p>
</a>
<a href="marketplace.html" class="feature-card">
<div class="feature-icon">
<i class="fas fa-store"></i>
</div>
<h3 class="feature-title">Marketplace</h3>
<p class="feature-desc">Buy & sell produce</p>
</a>
</div>
</section>
<!-- Mobile Bottom Navigation -->
<div class="mobile-nav-placeholder"></div>
<nav class="mobile-nav">
<a href="main.html" class="nav-item active">
<i class="fas fa-home nav-icon"></i>
<span>Home</span>
</a>
<a href="crop.html" class="nav-item">
<i class="fas fa-seedling nav-icon"></i>
<span>Crops</span>
</a>
<a href="disease.html" class="nav-item">
<i class="fas fa-bug nav-icon"></i>
<span>Disease</span>
</a>
<a href="chat.html" class="nav-item">
<i class="fas fa-comments nav-icon"></i>
<span>Community</span>
</a>
<i class="fas fa-user nav-icon"></i>
<span>Profile</span>
</a>
</nav>
<script>
document.querySelectorAll('.nav-item').forEach(item =
item.addEventListener('click', function() {
document.querySelectorAll('.nav-item').forEach(i =
this.classList.add('active');
});
});
</script>
</body>
</html>