Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -26,15 +26,15 @@ def _max_width_():
|
|
26 |
unsafe_allow_html=True,
|
27 |
)
|
28 |
|
29 |
-
st.set_page_config(page_icon="
|
30 |
-
|
31 |
-
st.image(
|
32 |
-
"https://cdna.artstation.com/p/assets/images/images/054/900/924/large/aaron-wacker-event-horizon.jpg?1665626929",
|
33 |
-
width=100,
|
34 |
-
)
|
35 |
|
|
|
|
|
|
|
|
|
36 |
st.title("CSV Dataset Analyzer")
|
37 |
-
|
|
|
38 |
|
39 |
c29, c30, c31 = st.columns([1, 6, 1])
|
40 |
|
|
|
26 |
unsafe_allow_html=True,
|
27 |
)
|
28 |
|
29 |
+
st.set_page_config(page_icon="🧠", page_title="CSV Dataset Analyzer")
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
+
col1, col2, col3 = st.columns([1,6,1])
|
32 |
+
with col1:
|
33 |
+
st.image("https://cdna.artstation.com/p/assets/images/images/054/900/924/large/aaron-wacker-event-horizon.jpg?1665626929",width=100,)
|
34 |
+
with col2:
|
35 |
st.title("CSV Dataset Analyzer")
|
36 |
+
with col3:
|
37 |
+
st.write("")
|
38 |
|
39 |
c29, c30, c31 = st.columns([1, 6, 1])
|
40 |
|