Update Pages/About.py
Browse files- Pages/About.py +30 -29
Pages/About.py
CHANGED
@@ -88,9 +88,10 @@ def about_page():
|
|
88 |
st.markdown("""---""")
|
89 |
|
90 |
with st.container():
|
|
|
91 |
col = st.columns([1, 1, 1])
|
92 |
# HARSH #
|
93 |
-
with col[
|
94 |
st.image("Developer activity-pana.png")
|
95 |
st.markdown(
|
96 |
'<div style=" font-family: Mali, cursive;text-align: center; font-size:24px; color:black;">Harsh Narayan</div>',
|
@@ -103,34 +104,34 @@ def about_page():
|
|
103 |
st.markdown(
|
104 |
"[](https://www.linkedin.com/in/harsh-narayan-377907264/)"
|
105 |
)
|
106 |
-
#
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
#
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
|
135 |
|
136 |
if __name__ == "__main__":
|
|
|
88 |
st.markdown("""---""")
|
89 |
|
90 |
with st.container():
|
91 |
+
|
92 |
col = st.columns([1, 1, 1])
|
93 |
# HARSH #
|
94 |
+
with col[0]:
|
95 |
st.image("Developer activity-pana.png")
|
96 |
st.markdown(
|
97 |
'<div style=" font-family: Mali, cursive;text-align: center; font-size:24px; color:black;">Harsh Narayan</div>',
|
|
|
104 |
st.markdown(
|
105 |
"[](https://www.linkedin.com/in/harsh-narayan-377907264/)"
|
106 |
)
|
107 |
+
# SHAMEEK #
|
108 |
+
with col[2]:
|
109 |
+
st.image("Standup meeting-pana.png")
|
110 |
+
st.markdown(
|
111 |
+
'<div style=" font-family: Mali, cursive;text-align: center; font-size:24px; color:black;">Shameek Bhowmick</div>',
|
112 |
+
unsafe_allow_html=True,
|
113 |
+
)
|
114 |
+
# st.markdown(
|
115 |
+
# '<div style=" font-family: Mali, cursive;text-align: center; font-size:16px; color:black;">Masters in Data Science</div>',
|
116 |
+
# unsafe_allow_html=True,
|
117 |
+
# )
|
118 |
+
st.markdown(
|
119 |
+
"[](https://www.linkedin.com/in/shameek-bhowmick-3481131a8/)"
|
120 |
+
)
|
121 |
+
# SAKSHI #
|
122 |
+
with col[1]:
|
123 |
+
st.image("Report-pana.png")
|
124 |
+
st.markdown(
|
125 |
+
'<div style=" font-family: Mali, cursive;text-align: center; font-size:24px; color:black;">Sakshi Panhalkar</div>',
|
126 |
+
unsafe_allow_html=True,
|
127 |
+
)
|
128 |
+
# st.markdown(
|
129 |
+
# '<div style=" font-family: Mali, cursive;text-align: center; font-size:16px; color:black;">Masters in Data Science</div>',
|
130 |
+
# unsafe_allow_html=True,
|
131 |
+
# )
|
132 |
+
st.markdown(
|
133 |
+
"[](https://www.linkedin.com/in/sakshi-panhalkar-7188061b4/)"
|
134 |
+
)
|
135 |
|
136 |
|
137 |
if __name__ == "__main__":
|