@@ -219,6 +219,35 @@ fun HomeScreen(
219219 }
220220 }
221221
222+ Spacer (Modifier .height(32 .dp))
223+
224+ // Fellow Farmers Near You
225+ Row (Modifier .padding(horizontal = 16 .dp), verticalAlignment = Alignment .CenterVertically ) {
226+ Icon (Icons .Filled .Group , contentDescription = null , tint = NuKropAccent , modifier = Modifier .size(16 .dp))
227+ Spacer (Modifier .width(8 .dp))
228+ Text (" Fellow Farmers Near You" , color = NuKropText , fontSize = 16 .sp, fontWeight = FontWeight .Bold )
229+ }
230+ Spacer (Modifier .height(12 .dp))
231+ Box (Modifier .padding(horizontal = 16 .dp).fillMaxWidth().clip(RoundedCornerShape (16 .dp)).background(NuKropCard ).border(1 .dp, NuKropBadgeGreen .copy(alpha= 0.3f ), RoundedCornerShape (16 .dp)).padding(16 .dp)) {
232+ Column {
233+ Row (verticalAlignment = Alignment .CenterVertically , horizontalArrangement = Arrangement .SpaceBetween , modifier = Modifier .fillMaxWidth()) {
234+ Row (verticalAlignment = Alignment .CenterVertically ) {
235+ Box (modifier = Modifier .size(36 .dp).clip(androidx.compose.foundation.shape.CircleShape ).background(NuKropAccent .copy(alpha= 0.2f )), contentAlignment = Alignment .Center ) {
236+ Text (" R" , color = NuKropAccent , fontWeight = FontWeight .Bold )
237+ }
238+ Spacer (Modifier .width(12 .dp))
239+ Column {
240+ Text (" Ramesh Singh" , color = NuKropText , fontSize = 14 .sp, fontWeight = FontWeight .Bold )
241+ Text (" Growing Wheat • 2.5 km away" , color = NuKropTextMuted , fontSize = 11 .sp)
242+ }
243+ }
244+ Button (onClick = {}, colors = ButtonDefaults .buttonColors(containerColor = NuKropAccent .copy(alpha= 0.15f )), contentPadding = PaddingValues (0 .dp), modifier = Modifier .size(70 .dp, 30 .dp), shape = RoundedCornerShape (8 .dp)) {
245+ Text (" Connect" , color = NuKropAccent , fontSize = 11 .sp, fontWeight = FontWeight .Bold )
246+ }
247+ }
248+ }
249+ }
250+
222251 Spacer (Modifier .height(40 .dp))
223252 }
224253 }
0 commit comments