-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.py
65 lines (58 loc) · 3.41 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# home.py
import streamlit as st
def app():
# Page title with styling
st.markdown(
"<h1 style='text-align: center; color: #4B8BBE; '>Empower Your Career </h1>",
unsafe_allow_html=True
)
# Add a descriptive subtitle with center alignment
st.markdown("<h3 style='text-align: center; color: #4B8BBE;'>Use our AI Interview Coach, build your confidence, and reach new heights in your career.</h3>", unsafe_allow_html=True)
# Divider for visual separation
st.markdown("---")
# Add sections with icons and engaging text
st.markdown("""
<div style="display: flex; justify-content: space-around; margin-top: 20px;">
<div style="text-align: center;">
<img src="https://img.icons8.com/ios-filled/50/4B8BBE/brain.png" width="50" height="50"/>
<h4>AI Interview Coach</h4>
<p style="color: #555555;">Practice interviewing with real-time feedback and ace your next interview.</p>
</div>
<div style="text-align: center;">
<img src="https://img.icons8.com/ios-filled/50/4B8BBE/confetti.png" width="50" height="50"/>
<h4>Confidence Quiz</h4>
<p style="color: #555555;">Assess your confidence level and get tips to improve.</p>
</div>
<div style="text-align: center;">
<img src="https://img.icons8.com/ios-filled/50/4B8BBE/book.png" width="50" height="50"/>
<h4>Resources</h4>
<p style="color: #555555;">Access a library of resources to support your career growth.</p>
</div>
</div>
<div style="display: flex; justify-content: space-around; margin-top: 20px;">
<div style="text-align: center;">
<img src="https://img.icons8.com/ios-filled/50/4B8BBE/bar-chart.png" width="50" height="50"/>
<h4>Statistics</h4>
<p style="color: #555555;">Learn about the Gender Pay Gap Statistics & Insights based on your state.</p>
</div>
<div style="text-align: center;">
<img src="https://img.icons8.com/ios-filled/50/4B8BBE/trophy.png" width="50" height="50"/>
<h4>Motivation</h4>
<p style="color: #555555;">Get daily inspirational quotes, read succes stories and motivational tips to keep pushing forward.</p>
</div>
<div style="text-align: center;">
<img src="https://img.icons8.com/ios-filled/50/4B8BBE/task-completed.png" width="50" height="50"/>
<h4>Progress Tracker</h4>
<p style="color: #555555;">Monitor your goals, milestones, and achievements as you grow.</p>
</div>
</div>
""", unsafe_allow_html=True)
# Informational message at the bottom instead of a button
st.markdown("<div style='text-align: center; margin-top: 40px;'>", unsafe_allow_html=True)
st.markdown(
"<p style='text-align: center; color: #4B8BBE; font-size: 1.1em;'>Use the menu on the left to get started with Confidence Quiz, try the the Interview Coach, or explore other resources!</p>",
unsafe_allow_html=True
)
st.markdown("</div>", unsafe_allow_html=True)
# Footer note or tagline
st.markdown("<p style='text-align: center; color: #888888; font-size: 0.9em;'>EmpowerU - Your Partner in Professional Growth and Confidence Building</p>", unsafe_allow_html=True)