Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +20 -17
src/streamlit_app.py
CHANGED
|
@@ -106,16 +106,8 @@ with col1:
|
|
| 106 |
Professor of Mechanical Engineering, Clemson University
|
| 107 |
gli@clemson.edu
|
| 108 |
""")
|
| 109 |
-
|
| 110 |
with col2:
|
| 111 |
-
st.image(fixed_image("Pradeep.jpg"))
|
| 112 |
-
st.markdown("""
|
| 113 |
-
**Sai Aditya Pradeep**
|
| 114 |
-
Research and Development Engineer, University of Delaware
|
| 115 |
-
spradeep@udel.edu
|
| 116 |
-
""")
|
| 117 |
-
|
| 118 |
-
with col3:
|
| 119 |
st.image(fixed_image("Mathias.jpeg"))
|
| 120 |
st.markdown("""
|
| 121 |
**Heider, Mathias**
|
|
@@ -123,13 +115,8 @@ with col3:
|
|
| 123 |
University of Delaware
|
| 124 |
mheider@udel.edu
|
| 125 |
""")
|
| 126 |
-
|
| 127 |
-
|
| 128 |
-
|
| 129 |
-
# ---------- ROW 2 (2 members, centered) ----------
|
| 130 |
-
sp1, col4, sp2, col5, sp3 = st.columns([1, 3, 1, 3, 1])
|
| 131 |
-
|
| 132 |
-
with col4:
|
| 133 |
st.image(fixed_image("Abhijit.jpg"))
|
| 134 |
st.markdown("""
|
| 135 |
**Abhijit Varanasi**
|
|
@@ -139,13 +126,29 @@ with col4:
|
|
| 139 |
avarana@clemson.edu
|
| 140 |
""")
|
| 141 |
|
| 142 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 143 |
st.image(fixed_image("Tejaswi.jpeg"))
|
| 144 |
st.markdown("""
|
| 145 |
**Tejaswi Gudimetla**
|
| 146 |
Lab Aide - Clemson University
|
| 147 |
vgudime@clemson.edu
|
| 148 |
""")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 149 |
|
| 150 |
|
| 151 |
|
|
|
|
| 106 |
Professor of Mechanical Engineering, Clemson University
|
| 107 |
gli@clemson.edu
|
| 108 |
""")
|
| 109 |
+
|
| 110 |
with col2:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 111 |
st.image(fixed_image("Mathias.jpeg"))
|
| 112 |
st.markdown("""
|
| 113 |
**Heider, Mathias**
|
|
|
|
| 115 |
University of Delaware
|
| 116 |
mheider@udel.edu
|
| 117 |
""")
|
| 118 |
+
|
| 119 |
+
with col3:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 120 |
st.image(fixed_image("Abhijit.jpg"))
|
| 121 |
st.markdown("""
|
| 122 |
**Abhijit Varanasi**
|
|
|
|
| 126 |
avarana@clemson.edu
|
| 127 |
""")
|
| 128 |
|
| 129 |
+
|
| 130 |
+
|
| 131 |
+
st.write("")
|
| 132 |
+
|
| 133 |
+
# ---------- ROW 2 (2 members, centered) ----------
|
| 134 |
+
sp1, col4, sp2, col5, sp3 = st.columns([1, 3, 1, 3, 1])
|
| 135 |
+
|
| 136 |
+
|
| 137 |
+
with col4:
|
| 138 |
st.image(fixed_image("Tejaswi.jpeg"))
|
| 139 |
st.markdown("""
|
| 140 |
**Tejaswi Gudimetla**
|
| 141 |
Lab Aide - Clemson University
|
| 142 |
vgudime@clemson.edu
|
| 143 |
""")
|
| 144 |
+
|
| 145 |
+
with col5:
|
| 146 |
+
st.image(fixed_image("Pradeep.jpg"))
|
| 147 |
+
st.markdown("""
|
| 148 |
+
**Sai Aditya Pradeep**
|
| 149 |
+
Research and Development Engineer, University of Delaware
|
| 150 |
+
spradeep@udel.edu
|
| 151 |
+
""")
|
| 152 |
|
| 153 |
|
| 154 |
|