-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.py
44 lines (43 loc) · 2.64 KB
/
home.py
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
import streamlit as st
def show_home():
st.markdown(
"""
<div style="background-color: #1c1c1c; padding: 30px; border-radius: 15px;">
<h1 style="color: #f39c12; text-align: center; font-family: 'Arial Black', sans-serif;">
Welcome to the Crop Recommendation System 🌾
</h1>
<p style="font-size: 20px; color: #ecf0f1; text-align: center; line-height: 1.6; font-family: 'Verdana', sans-serif;">
Empowering farmers and agriculturists with intelligent crop predictions and insights to boost productivity and sustainability.
</p>
<div style="margin-top: 30px; text-align: center;">
<h3 style="color: #27ae60; font-family: 'Arial', sans-serif;">🎯 Key Features:</h3>
<ul style="list-style-type: none; padding-left: 0; font-size: 18px; color: #bdc3c7; text-align: left; font-family: 'Verdana', sans-serif;">
<li style="margin-bottom: 10px;">
<span style="color: #e74c3c; font-weight: bold;">🔍 Predict:</span>
Receive tailored crop recommendations based on your specific inputs.
</li>
<li style="margin-bottom: 10px;">
<span style="color: #3498db; font-weight: bold;">📊 Analyze:</span>
Delve into data visualizations to uncover patterns and trends.
</li>
<li style="margin-bottom: 10px;">
<span style="color: #9b59b6; font-weight: bold;">🌾 Crop Comparison:</span>
Compare various crops to find the best fit for your needs.
</li>
<li style="margin-bottom: 10px;">
<span style="color: #2ecc71; font-weight: bold;">📈 Advanced Visualization:</span>
Explore complex data through advanced visualization tools.
</li>
<li style="margin-bottom: 10px;">
<span style="color: #f1c40f; font-weight: bold;">🌍 Sustainability Tips:</span>
Learn about sustainable practices to enhance long-term productivity.
</li>
<li style="margin-bottom: 10px;">
<span style="color: #16a085; font-weight: bold;">🌱 Crop Insights:</span>
Gain insights into crop performance and potential outcomes.
</li>
</ul>
</div>
</div>
""", unsafe_allow_html=True
)