Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,29 +1,12 @@
|
|
1 |
import streamlit as st
|
|
|
|
|
|
|
2 |
|
3 |
-
# Set the page configuration
|
4 |
-
st.set_page_config(
|
5 |
-
page_title="Data Analysis with Python",
|
6 |
-
page_icon=":bar_chart:",
|
7 |
-
layout="centered",
|
8 |
-
initial_sidebar_state="expanded",
|
9 |
-
)
|
10 |
|
11 |
-
# Custom CSS for a better theme
|
12 |
-
st.markdown("""
|
13 |
-
<style>
|
14 |
-
.main {
|
15 |
-
background-color: #f0f2f6;
|
16 |
-
}
|
17 |
-
.sidebar .sidebar-content {
|
18 |
-
background-color: #ffffff;
|
19 |
-
}
|
20 |
-
</style>
|
21 |
-
""", unsafe_allow_html=True)
|
22 |
-
|
23 |
-
# Title and subtitle
|
24 |
-
st.title("Data Analysis with Python")
|
25 |
-
st.subheader("Learn, Explore, and Master Data Analysis with Python")
|
26 |
|
|
|
|
|
27 |
# About the app section
|
28 |
st.markdown("""
|
29 |
## About This App
|
@@ -52,6 +35,13 @@ Data analysis is a critical skill in today's data-driven world. Python is one of
|
|
52 |
We hope you enjoy using this app and find it valuable in your learning journey. Happy analyzing!
|
53 |
""")
|
54 |
|
55 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
st.markdown("---")
|
57 |
-
st.markdown("© 2024 Data Analysis with Python. All rights reserved.")
|
|
|
1 |
import streamlit as st
|
2 |
+
st.markdown("<h1 style='text-align: center; color: grey;'>Data Analysis With Python 🕵</h1>", unsafe_allow_html=True)
|
3 |
+
|
4 |
+
|
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
+
st.markdown("<h2 style='text-align: center; color: grey;'>About the web app </h2>", unsafe_allow_html=True)
|
9 |
+
|
10 |
# About the app section
|
11 |
st.markdown("""
|
12 |
## About This App
|
|
|
35 |
We hope you enjoy using this app and find it valuable in your learning journey. Happy analyzing!
|
36 |
""")
|
37 |
|
38 |
+
col1, col2, = st.columns(2,gap="small")
|
39 |
+
|
40 |
+
with col1:
|
41 |
+
st.page_link("pages/Intro.py", label="Intro", icon="1️⃣")
|
42 |
+
with col2:
|
43 |
+
st.page_link("pages/RoadMap.py", label="Roadmap", icon="2️⃣",)
|
44 |
+
|
45 |
+
|
46 |
st.markdown("---")
|
47 |
+
st.markdown("© 2024 Data Analysis with Python. All rights reserved.")
|