Dc0der-x commited on
Commit
eec7ce7
·
verified ·
1 Parent(s): cd58c98

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +607 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Dr Plant
3
- emoji: 🦀
4
- colorFrom: purple
5
- colorTo: blue
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: dr-plant
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: purple
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,607 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>PlantCare - AI Plant Health & Traditional Remedies</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Poppins', sans-serif;
14
+ background-color: #f7fafc;
15
+ }
16
+
17
+ .gradient-bg {
18
+ background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
19
+ }
20
+
21
+ .plant-card:hover {
22
+ transform: translateY(-5px);
23
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
24
+ }
25
+
26
+ .remedy-card {
27
+ transition: all 0.3s ease;
28
+ }
29
+
30
+ .remedy-card:hover {
31
+ transform: scale(1.02);
32
+ }
33
+
34
+ .camera-btn {
35
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
36
+ }
37
+
38
+ .nav-item {
39
+ position: relative;
40
+ }
41
+
42
+ .nav-item.active::after {
43
+ content: '';
44
+ position: absolute;
45
+ bottom: -8px;
46
+ left: 50%;
47
+ transform: translateX(-50%);
48
+ width: 6px;
49
+ height: 6px;
50
+ border-radius: 50%;
51
+ background-color: #48bb78;
52
+ }
53
+
54
+ /* Custom scrollbar */
55
+ ::-webkit-scrollbar {
56
+ width: 8px;
57
+ }
58
+
59
+ ::-webkit-scrollbar-track {
60
+ background: #f1f1f1;
61
+ }
62
+
63
+ ::-webkit-scrollbar-thumb {
64
+ background: #c6f6d5;
65
+ border-radius: 4px;
66
+ }
67
+
68
+ ::-webkit-scrollbar-thumb:hover {
69
+ background: #9ae6b4;
70
+ }
71
+
72
+ /* Animation for scan button */
73
+ @keyframes pulse {
74
+ 0% {
75
+ transform: scale(1);
76
+ box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.7);
77
+ }
78
+ 70% {
79
+ transform: scale(1.05);
80
+ box-shadow: 0 0 0 10px rgba(72, 187, 120, 0);
81
+ }
82
+ 100% {
83
+ transform: scale(1);
84
+ box-shadow: 0 0 0 0 rgba(72, 187, 120, 0);
85
+ }
86
+ }
87
+
88
+ .pulse-animation {
89
+ animation: pulse 2s infinite;
90
+ }
91
+ </style>
92
+ </head>
93
+ <body>
94
+ <!-- Header/Navigation -->
95
+ <header class="bg-white shadow-sm sticky top-0 z-50">
96
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
97
+ <div class="flex items-center space-x-2">
98
+ <i class="fas fa-leaf text-2xl text-green-600"></i>
99
+ <h1 class="text-xl font-bold text-gray-800">Dr. Plant</h1>
100
+ </div>
101
+ <nav class="hidden md:flex space-x-8">
102
+ <a href="#" class="nav-item active text-green-600 font-medium">Home</a>
103
+ <a href="#" class="nav-item text-gray-600 hover:text-green-600 transition">Remedies</a>
104
+ <a href="#" class="nav-item text-gray-600 hover:text-green-600 transition">My Plants</a>
105
+ <a href="#" class="nav-item text-gray-600 hover:text-green-600 transition">Community</a>
106
+ <a href="#" class="nav-item text-gray-600 hover:text-green-600 transition">Shop</a>
107
+ </nav>
108
+ <div class="flex items-center space-x-4">
109
+ <button class="md:hidden text-gray-600">
110
+ <i class="fas fa-bars text-xl"></i>
111
+ </button>
112
+ <button class="hidden md:block bg-green-600 hover:bg-green-700 text-white px-4 py-2 rounded-full transition">
113
+ Sign In
114
+ </button>
115
+ </div>
116
+ </div>
117
+ </header>
118
+
119
+ <!-- Hero Section -->
120
+ <section class="gradient-bg text-white py-16">
121
+ <div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
122
+ <div class="md:w-1/2 mb-8 md:mb-0">
123
+ <h1 class="text-4xl md:text-5xl font-bold mb-4">Dr. Plant - AI Plant Doctor</h1>
124
+ <p class="text-xl mb-6">Detect plant diseases instantly and discover traditional Indian remedies to keep your plants thriving naturally.</p>
125
+ <div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4">
126
+ <button class="bg-white text-green-700 hover:bg-gray-100 font-bold px-6 py-3 rounded-full transition flex items-center justify-center">
127
+ <i class="fas fa-camera mr-2"></i> Scan Plant
128
+ </button>
129
+ <button class="border-2 border-white text-white hover:bg-white hover:text-green-700 font-bold px-6 py-3 rounded-full transition">
130
+ Explore Remedies
131
+ </button>
132
+ </div>
133
+ </div>
134
+ <div class="md:w-1/2 flex justify-center">
135
+ <img src="https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
136
+ alt="Healthy plants"
137
+ class="rounded-lg shadow-xl w-full max-w-md">
138
+ </div>
139
+ </div>
140
+ </section>
141
+
142
+ <!-- How It Works Section -->
143
+ <section class="py-16 bg-white">
144
+ <div class="container mx-auto px-4">
145
+ <h2 class="text-3xl font-bold text-center mb-12 text-gray-800">How Dr. Plant Works</h2>
146
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
147
+ <div class="bg-gray-50 p-6 rounded-xl text-center">
148
+ <div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
149
+ <i class="fas fa-camera text-green-600 text-2xl"></i>
150
+ </div>
151
+ <h3 class="text-xl font-semibold mb-2">1. Take a Photo</h3>
152
+ <p class="text-gray-600">Capture an image of your plant's leaves, stem, or affected area using your phone's camera.</p>
153
+ </div>
154
+ <div class="bg-gray-50 p-6 rounded-xl text-center">
155
+ <div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
156
+ <i class="fas fa-brain text-green-600 text-2xl"></i>
157
+ </div>
158
+ <h3 class="text-xl font-semibold mb-2">2. AI Analysis</h3>
159
+ <p class="text-gray-600">Our advanced AI detects diseases with 90%+ accuracy and assesses severity.</p>
160
+ </div>
161
+ <div class="bg-gray-50 p-6 rounded-xl text-center">
162
+ <div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
163
+ <i class="fas fa-mortar-pestle text-green-600 text-2xl"></i>
164
+ </div>
165
+ <h3 class="text-xl font-semibold mb-2">3. Get Remedies</h3>
166
+ <p class="text-gray-600">Receive traditional Indian (Ayurvedic) remedies tailored to your plant's condition.</p>
167
+ </div>
168
+ </div>
169
+ </div>
170
+ </section>
171
+
172
+ <!-- Disease Scanner Section -->
173
+ <section class="py-16 bg-gray-50">
174
+ <div class="container mx-auto px-4">
175
+ <div class="flex flex-col md:flex-row items-center">
176
+ <div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
177
+ <h2 class="text-3xl font-bold mb-4 text-gray-800">Instant Plant Disease Detection</h2>
178
+ <p class="text-gray-600 mb-6">Our AI-powered scanner can identify over 500 plant diseases and pests with high accuracy. Get results in seconds and save your plants before it's too late.</p>
179
+ <ul class="space-y-3 mb-6">
180
+ <li class="flex items-start">
181
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
182
+ <span class="text-gray-700">Supports 500+ plant species common in India</span>
183
+ </li>
184
+ <li class="flex items-start">
185
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
186
+ <span class="text-gray-700">Works offline for basic detection</span>
187
+ </li>
188
+ <li class="flex items-start">
189
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
190
+ <span class="text-gray-700">Severity assessment (mild, moderate, severe)</span>
191
+ </li>
192
+ </ul>
193
+ <button class="pulse-animation bg-green-600 hover:bg-green-700 text-white font-bold px-6 py-3 rounded-full transition flex items-center">
194
+ <i class="fas fa-camera mr-2"></i> Scan My Plant Now
195
+ </button>
196
+ </div>
197
+ <div class="md:w-1/2 relative">
198
+ <div class="bg-white p-4 rounded-xl shadow-lg max-w-md mx-auto">
199
+ <div class="bg-gray-200 rounded-lg overflow-hidden h-64 flex items-center justify-center">
200
+ <div class="text-center p-4">
201
+ <i class="fas fa-camera text-4xl text-gray-400 mb-2"></i>
202
+ <p class="text-gray-500">Plant image will appear here</p>
203
+ </div>
204
+ </div>
205
+ <div class="mt-4">
206
+ <div class="flex justify-between items-center mb-2">
207
+ <span class="text-sm font-medium text-gray-700">Scanning...</span>
208
+ <span class="text-xs bg-green-100 text-green-800 px-2 py-1 rounded">AI Processing</span>
209
+ </div>
210
+ <div class="w-full bg-gray-200 rounded-full h-2.5">
211
+ <div class="bg-green-600 h-2.5 rounded-full" style="width: 75%"></div>
212
+ </div>
213
+ </div>
214
+ </div>
215
+ <div class="absolute -bottom-4 -right-4 bg-white p-3 rounded-full shadow-md">
216
+ <div class="bg-green-100 w-12 h-12 rounded-full flex items-center justify-center">
217
+ <i class="fas fa-seedling text-green-600 text-xl"></i>
218
+ </div>
219
+ </div>
220
+ </div>
221
+ </div>
222
+ </div>
223
+ </section>
224
+
225
+ <!-- Traditional Remedies Section -->
226
+ <section class="py-16 bg-white">
227
+ <div class="container mx-auto px-4">
228
+ <div class="text-center mb-12">
229
+ <h2 class="text-3xl font-bold mb-2 text-gray-800">Traditional Indian Plant Remedies</h2>
230
+ <p class="text-gray-600 max-w-2xl mx-auto">Ancient Ayurvedic wisdom meets modern plant care. Discover 2000+ natural solutions passed down through generations.</p>
231
+ </div>
232
+
233
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 mb-8">
234
+ <!-- Remedy Card 1 -->
235
+ <div class="remedy-card bg-white border border-gray-200 rounded-xl overflow-hidden shadow-sm hover:shadow-md transition">
236
+ <img src="https://images.unsplash.com/photo-1601493700631-2b16ec4b4716?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
237
+ alt="Neem leaves"
238
+ class="w-full h-48 object-cover">
239
+ <div class="p-6">
240
+ <div class="flex justify-between items-start mb-2">
241
+ <h3 class="text-xl font-bold text-gray-800">Neem Oil Spray</h3>
242
+ <span class="bg-green-100 text-green-800 text-xs px-2 py-1 rounded">Pest Control</span>
243
+ </div>
244
+ <p class="text-gray-600 mb-4">Effective against aphids, whiteflies, and spider mites. A traditional remedy used for centuries.</p>
245
+ <div class="flex items-center text-sm text-gray-500 mb-4">
246
+ <i class="fas fa-clock mr-1"></i>
247
+ <span>Prep Time: 15 mins</span>
248
+ </div>
249
+ <button class="w-full bg-green-600 hover:bg-green-700 text-white py-2 rounded-lg transition flex items-center justify-center">
250
+ <i class="fas fa-book-open mr-2"></i> View Recipe
251
+ </button>
252
+ </div>
253
+ </div>
254
+
255
+ <!-- Remedy Card 2 -->
256
+ <div class="remedy-card bg-white border border-gray-200 rounded-xl overflow-hidden shadow-sm hover:shadow-md transition">
257
+ <img src="https://images.unsplash.com/photo-1601493700896-4b8ac38ba0e8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
258
+ alt="Turmeric powder"
259
+ class="w-full h-48 object-cover">
260
+ <div class="p-6">
261
+ <div class="flex justify-between items-start mb-2">
262
+ <h3 class="text-xl font-bold text-gray-800">Turmeric Antifungal</h3>
263
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">Fungal Treatment</span>
264
+ </div>
265
+ <p class="text-gray-600 mb-4">Powerful natural antifungal for powdery mildew and leaf spot diseases.</p>
266
+ <div class="flex items-center text-sm text-gray-500 mb-4">
267
+ <i class="fas fa-clock mr-1"></i>
268
+ <span>Prep Time: 10 mins</span>
269
+ </div>
270
+ <button class="w-full bg-green-600 hover:bg-green-700 text-white py-2 rounded-lg transition flex items-center justify-center">
271
+ <i class="fas fa-book-open mr-2"></i> View Recipe
272
+ </button>
273
+ </div>
274
+ </div>
275
+
276
+ <!-- Remedy Card 3 -->
277
+ <div class="remedy-card bg-white border border-gray-200 rounded-xl overflow-hidden shadow-sm hover:shadow-md transition">
278
+ <img src="https://images.unsplash.com/photo-1601493700631-2b16ec4b4716?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
279
+ alt="Banana peel"
280
+ class="w-full h-48 object-cover">
281
+ <div class="p-6">
282
+ <div class="flex justify-between items-start mb-2">
283
+ <h3 class="text-xl font-bold text-gray-800">Banana Peel Fertilizer</h3>
284
+ <span class="bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded">Nutrient Boost</span>
285
+ </div>
286
+ <p class="text-gray-600 mb-4">Rich in potassium and phosphorus for flowering plants. A zero-waste solution.</p>
287
+ <div class="flex items-center text-sm text-gray-500 mb-4">
288
+ <i class="fas fa-clock mr-1"></i>
289
+ <span>Prep Time: 2 days</span>
290
+ </div>
291
+ <button class="w-full bg-green-600 hover:bg-green-700 text-white py-2 rounded-lg transition flex items-center justify-center">
292
+ <i class="fas fa-book-open mr-2"></i> View Recipe
293
+ </button>
294
+ </div>
295
+ </div>
296
+ </div>
297
+
298
+ <div class="text-center mt-8">
299
+ <button class="border-2 border-green-600 text-green-600 hover:bg-green-600 hover:text-white font-bold px-6 py-3 rounded-full transition">
300
+ Browse All Remedies
301
+ </button>
302
+ </div>
303
+ </div>
304
+ </section>
305
+
306
+ <!-- My Plants Section -->
307
+ <section class="py-16 bg-gray-50">
308
+ <div class="container mx-auto px-4">
309
+ <div class="flex justify-between items-center mb-8">
310
+ <h2 class="text-3xl font-bold text-gray-800">My Plants</h2>
311
+ <button class="bg-green-600 hover:bg-green-700 text-white px-4 py-2 rounded-full transition flex items-center">
312
+ <i class="fas fa-plus mr-2"></i> Add Plant
313
+ </button>
314
+ </div>
315
+
316
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
317
+ <!-- Plant Card 1 -->
318
+ <div class="plant-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
319
+ <div class="relative">
320
+ <img src="https://images.unsplash.com/photo-1598880940080-ff9a29891b80?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
321
+ alt="Money plant"
322
+ class="w-full h-48 object-cover">
323
+ <span class="absolute top-3 right-3 bg-green-100 text-green-800 text-xs px-2 py-1 rounded-full">Healthy</span>
324
+ </div>
325
+ <div class="p-6">
326
+ <div class="flex justify-between items-start mb-2">
327
+ <h3 class="text-xl font-bold text-gray-800">Money Plant</h3>
328
+ <div class="flex space-x-1">
329
+ <i class="fas fa-tint text-blue-400"></i>
330
+ <i class="fas fa-sun text-yellow-400"></i>
331
+ </div>
332
+ </div>
333
+ <p class="text-gray-600 mb-4">Last watered: 2 days ago</p>
334
+ <div class="flex justify-between items-center">
335
+ <div class="flex items-center text-sm text-gray-500">
336
+ <i class="fas fa-calendar-alt mr-1"></i>
337
+ <span>Next care: Tomorrow</span>
338
+ </div>
339
+ <button class="text-green-600 hover:text-green-800">
340
+ <i class="fas fa-ellipsis-h"></i>
341
+ </button>
342
+ </div>
343
+ </div>
344
+ </div>
345
+
346
+ <!-- Plant Card 2 -->
347
+ <div class="plant-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
348
+ <div class="relative">
349
+ <img src="https://images.unsplash.com/photo-1598880940080-ff9a29891b80?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
350
+ alt="Tulsi plant"
351
+ class="w-full h-48 object-cover">
352
+ <span class="absolute top-3 right-3 bg-yellow-100 text-yellow-800 text-xs px-2 py-1 rounded-full">Needs Care</span>
353
+ </div>
354
+ <div class="p-6">
355
+ <div class="flex justify-between items-start mb-2">
356
+ <h3 class="text-xl font-bold text-gray-800">Tulsi (Holy Basil)</h3>
357
+ <div class="flex space-x-1">
358
+ <i class="fas fa-tint text-blue-400"></i>
359
+ <i class="fas fa-sun text-yellow-400"></i>
360
+ </div>
361
+ </div>
362
+ <p class="text-gray-600 mb-4">Last watered: 4 days ago</p>
363
+ <div class="flex justify-between items-center">
364
+ <div class="flex items-center text-sm text-gray-500">
365
+ <i class="fas fa-calendar-alt mr-1"></i>
366
+ <span>Next care: Today</span>
367
+ </div>
368
+ <button class="text-green-600 hover:text-green-800">
369
+ <i class="fas fa-ellipsis-h"></i>
370
+ </button>
371
+ </div>
372
+ </div>
373
+ </div>
374
+
375
+ <!-- Plant Card 3 -->
376
+ <div class="plant-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
377
+ <div class="relative">
378
+ <img src="https://images.unsplash.com/photo-1598880940080-ff9a29891b80?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
379
+ alt="Rose plant"
380
+ class="w-full h-48 object-cover">
381
+ <span class="absolute top-3 right-3 bg-red-100 text-red-800 text-xs px-2 py-1 rounded-full">Disease Detected</span>
382
+ </div>
383
+ <div class="p-6">
384
+ <div class="flex justify-between items-start mb-2">
385
+ <h3 class="text-xl font-bold text-gray-800">Rose Plant</h3>
386
+ <div class="flex space-x-1">
387
+ <i class="fas fa-tint text-blue-400"></i>
388
+ <i class="fas fa-sun text-yellow-400"></i>
389
+ </div>
390
+ </div>
391
+ <p class="text-gray-600 mb-4">Black spot detected on leaves</p>
392
+ <div class="flex justify-between items-center">
393
+ <button class="text-sm bg-red-100 text-red-800 px-3 py-1 rounded-full">
394
+ View Treatment
395
+ </button>
396
+ <button class="text-green-600 hover:text-green-800">
397
+ <i class="fas fa-ellipsis-h"></i>
398
+ </button>
399
+ </div>
400
+ </div>
401
+ </div>
402
+ </div>
403
+ </div>
404
+ </section>
405
+
406
+ <!-- Community Section -->
407
+ <section class="py-16 bg-white">
408
+ <div class="container mx-auto px-4">
409
+ <div class="text-center mb-12">
410
+ <h2 class="text-3xl font-bold mb-2 text-gray-800">PlantCare Community</h2>
411
+ <p class="text-gray-600 max-w-2xl mx-auto">Connect with fellow plant lovers, share tips, and get expert advice.</p>
412
+ </div>
413
+
414
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-8">
415
+ <!-- Community Post 1 -->
416
+ <div class="bg-gray-50 p-6 rounded-xl">
417
+ <div class="flex items-center mb-4">
418
+ <img src="https://randomuser.me/api/portraits/women/44.jpg"
419
+ alt="User"
420
+ class="w-12 h-12 rounded-full object-cover mr-3">
421
+ <div>
422
+ <h4 class="font-semibold">Priya Sharma</h4>
423
+ <p class="text-sm text-gray-500">2 hours ago</p>
424
+ </div>
425
+ </div>
426
+ <p class="text-gray-700 mb-4">My money plant leaves are turning yellow. Tried neem oil spray but no improvement. Any suggestions?</p>
427
+ <div class="flex justify-between items-center">
428
+ <div class="flex space-x-4">
429
+ <span class="flex items-center text-sm text-gray-500">
430
+ <i class="fas fa-heart mr-1 text-red-400"></i> 12
431
+ </span>
432
+ <span class="flex items-center text-sm text-gray-500">
433
+ <i class="fas fa-comment mr-1 text-blue-400"></i> 5
434
+ </span>
435
+ </div>
436
+ <button class="text-sm text-green-600 hover:text-green-800">
437
+ View Details
438
+ </button>
439
+ </div>
440
+ </div>
441
+
442
+ <!-- Community Post 2 -->
443
+ <div class="bg-gray-50 p-6 rounded-xl">
444
+ <div class="flex items-center mb-4">
445
+ <img src="https://randomuser.me/api/portraits/men/32.jpg"
446
+ alt="User"
447
+ class="w-12 h-12 rounded-full object-cover mr-3">
448
+ <div>
449
+ <h4 class="font-semibold">Dr. Rajiv Patel</h4>
450
+ <p class="text-sm text-gray-500 flex items-center">
451
+ <i class="fas fa-check-circle text-green-500 mr-1"></i> Plant Expert
452
+ </p>
453
+ </div>
454
+ </div>
455
+ <p class="text-gray-700 mb-4">Just posted a new video on preparing organic fertilizer from kitchen waste. Check it out!</p>
456
+ <div class="mb-4 rounded-lg overflow-hidden">
457
+ <img src="https://images.unsplash.com/photo-1601493700631-2b16ec4b4716?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
458
+ alt="Video thumbnail"
459
+ class="w-full h-32 object-cover">
460
+ </div>
461
+ <div class="flex justify-between items-center">
462
+ <div class="flex space-x-4">
463
+ <span class="flex items-center text-sm text-gray-500">
464
+ <i class="fas fa-heart mr-1 text-red-400"></i> 42
465
+ </span>
466
+ <span class="flex items-center text-sm text-gray-500">
467
+ <i class="fas fa-comment mr-1 text-blue-400"></i> 8
468
+ </span>
469
+ </div>
470
+ <button class="text-sm text-green-600 hover:text-green-800">
471
+ Watch Now
472
+ </button>
473
+ </div>
474
+ </div>
475
+ </div>
476
+
477
+ <div class="text-center mt-8">
478
+ <button class="border-2 border-green-600 text-green-600 hover:bg-green-600 hover:text-white font-bold px-6 py-3 rounded-full transition">
479
+ Join the Community
480
+ </button>
481
+ </div>
482
+ </div>
483
+ </section>
484
+
485
+ <!-- App Download Section -->
486
+ <section class="gradient-bg text-white py-16">
487
+ <div class="container mx-auto px-4 text-center">
488
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Get the Dr. Plant App</h2>
489
+ <p class="text-xl mb-8 max-w-2xl mx-auto">Download our mobile app for instant plant disease detection and care reminders on the go.</p>
490
+ <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6">
491
+ <button class="bg-black hover:bg-gray-900 text-white px-6 py-3 rounded-lg transition flex items-center justify-center">
492
+ <i class="fab fa-apple text-2xl mr-2"></i>
493
+ <div class="text-left">
494
+ <div class="text-xs">Download on the</div>
495
+ <div class="text-lg font-semibold">App Store</div>
496
+ </div>
497
+ </button>
498
+ <button class="bg-black hover:bg-gray-900 text-white px-6 py-3 rounded-lg transition flex items-center justify-center">
499
+ <i class="fab fa-google-play text-2xl mr-2"></i>
500
+ <div class="text-left">
501
+ <div class="text-xs">Get it on</div>
502
+ <div class="text-lg font-semibold">Google Play</div>
503
+ </div>
504
+ </button>
505
+ </div>
506
+ </div>
507
+ </section>
508
+
509
+ <!-- Footer -->
510
+ <footer class="bg-gray-900 text-gray-300 py-12">
511
+ <div class="container mx-auto px-4">
512
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
513
+ <div>
514
+ <div class="flex items-center space-x-2 mb-4">
515
+ <i class="fas fa-leaf text-2xl text-green-400"></i>
516
+ <h3 class="text-xl font-bold text-white">Dr. Plant</h3>
517
+ </div>
518
+ <p class="mb-4">AI-powered plant health care with traditional Indian remedies.</p>
519
+ <div class="flex space-x-4">
520
+ <a href="#" class="text-gray-400 hover:text-white transition">
521
+ <i class="fab fa-facebook-f"></i>
522
+ </a>
523
+ <a href="#" class="text-gray-400 hover:text-white transition">
524
+ <i class="fab fa-twitter"></i>
525
+ </a>
526
+ <a href="#" class="text-gray-400 hover:text-white transition">
527
+ <i class="fab fa-instagram"></i>
528
+ </a>
529
+ <a href="#" class="text-gray-400 hover:text-white transition">
530
+ <i class="fab fa-youtube"></i>
531
+ </a>
532
+ </div>
533
+ </div>
534
+ <div>
535
+ <h4 class="text-lg font-semibold text-white mb-4">Features</h4>
536
+ <ul class="space-y-2">
537
+ <li><a href="#" class="hover:text-white transition">Plant Disease Detection</a></li>
538
+ <li><a href="#" class="hover:text-white transition">Traditional Remedies</a></li>
539
+ <li><a href="#" class="hover:text-white transition">Plant Care Assistant</a></li>
540
+ <li><a href="#" class="hover:text-white transition">Community Forum</a></li>
541
+ <li><a href="#" class="hover:text-white transition">Organic Products</a></li>
542
+ </ul>
543
+ </div>
544
+ <div>
545
+ <h4 class="text-lg font-semibold text-white mb-4">Company</h4>
546
+ <ul class="space-y-2">
547
+ <li><a href="#" class="hover:text-white transition">About Us</a></li>
548
+ <li><a href="#" class="hover:text-white transition">Careers</a></li>
549
+ <li><a href="#" class="hover:text-white transition">Blog</a></li>
550
+ <li><a href="#" class="hover:text-white transition">Press</a></li>
551
+ <li><a href="#" class="hover:text-white transition">Contact</a></li>
552
+ </ul>
553
+ </div>
554
+ <div>
555
+ <h4 class="text-lg font-semibold text-white mb-4">Support</h4>
556
+ <ul class="space-y-2">
557
+ <li><a href="#" class="hover:text-white transition">Help Center</a></li>
558
+ <li><a href="#" class="hover:text-white transition">Privacy Policy</a></li>
559
+ <li><a href="#" class="hover:text-white transition">Terms of Service</a></li>
560
+ <li><a href="#" class="hover:text-white transition">Refund Policy</a></li>
561
+ <li><a href="#" class="hover:text-white transition">FAQ</a></li>
562
+ </ul>
563
+ </div>
564
+ </div>
565
+ <div class="pt-8 border-t border-gray-800 text-center">
566
+ <p>&copy; 2023 Dr. Plant. All rights reserved.</p>
567
+ </div>
568
+ </div>
569
+ </footer>
570
+
571
+ <!-- Floating Action Button -->
572
+ <div class="fixed bottom-6 right-6 z-50">
573
+ <button class="camera-btn bg-green-600 hover:bg-green-700 text-white w-14 h-14 rounded-full flex items-center justify-center shadow-lg transition">
574
+ <i class="fas fa-camera text-xl"></i>
575
+ </button>
576
+ </div>
577
+
578
+ <script>
579
+ // Simple JavaScript for demonstration
580
+ document.addEventListener('DOMContentLoaded', function() {
581
+ // Mobile menu toggle would go here
582
+ // Camera button functionality
583
+ const cameraBtn = document.querySelector('.camera-btn');
584
+ cameraBtn.addEventListener('click', function() {
585
+ alert('Camera functionality would open here to scan your plant');
586
+ });
587
+
588
+ // Plant card hover effect
589
+ const plantCards = document.querySelectorAll('.plant-card');
590
+ plantCards.forEach(card => {
591
+ card.addEventListener('mouseenter', function() {
592
+ this.style.transition = 'all 0.3s ease';
593
+ });
594
+ });
595
+
596
+ // Remedy card click
597
+ const remedyCards = document.querySelectorAll('.remedy-card');
598
+ remedyCards.forEach(card => {
599
+ card.addEventListener('click', function() {
600
+ // In a real app, this would navigate to remedy details
601
+ console.log('Viewing remedy details');
602
+ });
603
+ });
604
+ });
605
+ </script>
606
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Dc0der-x/dr-plant" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
607
+ </html>