-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.py
More file actions
106 lines (99 loc) · 3.83 KB
/
about.py
File metadata and controls
106 lines (99 loc) · 3.83 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
import streamlit as st
def main():
# Custom CSS for styling
st.markdown("""
<style>
body {
background-color: #f0f4f8;
font-family: 'Arial', sans-serif;
}
.sidebar .sidebar-content {
background-color: #f7f7f7;
}
.css-1lcbmhc {
overflow: auto;
}
.stButton button {
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
padding: 10px 20px;
cursor: pointer;
}
.stButton button:hover {
background-color: #0056b3;
}
.info-box {
background-color: #333;
border: 1px solid #fff;
border-radius: 10px;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
color: #fff;
}
.info-box h3 {
color: #ff6347;
}
.info-box p {
font-size: 1.2rem;
}
.team-member {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.team-member img {
border-radius: 50%;
width: 80px;
height: 80px;
margin-right: 20px;
}
.team-member h4 {
margin: 0;
color: #ffd700;
}
</style>
""", unsafe_allow_html=True)
# Title of the page
st.title("📚 About the App")
# Information about the app
st.markdown("""
<div class="info-box">
<h3>Welcome to the Star Classification App!</h3>
<p>This advanced web application is designed to classify astronomical objects into three categories: Galaxies, Quasars, and Stars. Utilizing cutting-edge machine learning models, our app provides accurate and insightful predictions based on various astronomical features.</p>
<p>With features like Predict, Recommend, Visualize, Analyze, Insights, Gallery, Feedback, and About, this app offers a comprehensive and professional platform for exploring and understanding astronomical data.</p>
<p>Whether you're a researcher, student, or astronomy enthusiast, our app aims to provide valuable insights and a user-friendly experience for all your star classification needs.</p>
</div>
""", unsafe_allow_html=True)
# Information about the team
st.markdown("""
<div class="info-box">
<h3>Meet the Team</h3>
<div class="team-member">
<img src="https://via.placeholder.com/80" alt="Devanik">
<div>
<h4>Devanik</h4>
<p>Aspiring AI Ops Engineer</p>
</div>
</div>
<div class="team-member">
<img src="https://via.placeholder.com/80" alt="AI">
<div>
<h4>Niki</h4>
<p>Advanced Copilot</p>
</div>
</div>
</div>
""", unsafe_allow_html=True)
# Contact details or links
st.markdown("""
<div class="info-box">
<h3>Contact Us</h3>
<p>If you have any questions or feedback, feel free to reach out:</p>
<p>Email: <a href="mailto:devanik2005@gmail.com" style="color: #ffd700;">devanik2005@gmail.com</a></p>
<p>LinkedIn: <a href="https://www.linkedin.com/in/devanik/" style="color: #ffd700;" target="_blank">Devanik</a></p>
</div>
""", unsafe_allow_html=True)
if __name__ == "__main__":
main()