Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -18,13 +18,16 @@ def _max_width_():
|
|
| 18 |
unsafe_allow_html=True,
|
| 19 |
)
|
| 20 |
st.set_page_config(page_icon="📝", page_title="CSV Dataset Analyzer")
|
|
|
|
|
|
|
| 21 |
col1, col2, col3 = st.columns([1,6,1])
|
| 22 |
with col1:
|
| 23 |
-
st.image("https://cdna.artstation.com/p/assets/images/images/054/900/
|
| 24 |
with col2:
|
| 25 |
-
st.title("📝CSV Data Analyzer
|
| 26 |
with col3:
|
| 27 |
-
st.
|
|
|
|
| 28 |
c29, c30, c31 = st.columns([1, 6, 1])
|
| 29 |
with c30:
|
| 30 |
uploaded_file = st.file_uploader("", key="1", help="To activate 'wide mode', go to the menu > Settings > turn on 'wide mode'",)
|
|
|
|
| 18 |
unsafe_allow_html=True,
|
| 19 |
)
|
| 20 |
st.set_page_config(page_icon="📝", page_title="CSV Dataset Analyzer")
|
| 21 |
+
|
| 22 |
+
# Title Bar with Images and Icons
|
| 23 |
col1, col2, col3 = st.columns([1,6,1])
|
| 24 |
with col1:
|
| 25 |
+
st.image("https://cdna.artstation.com/p/assets/images/images/054/900/558/large/aaron-wacker-pen-and-ink-castle-of-the-light-wing-angels.jpg?1665625788",width=80,)
|
| 26 |
with col2:
|
| 27 |
+
st.title("📝CSV Data Analyzer")
|
| 28 |
with col3:
|
| 29 |
+
st.image("https://cdna.artstation.com/p/assets/images/images/054/900/558/small/aaron-wacker-pen-and-ink-castle-of-the-light-wing-angels.jpg?1665625788",width=80,)
|
| 30 |
+
|
| 31 |
c29, c30, c31 = st.columns([1, 6, 1])
|
| 32 |
with c30:
|
| 33 |
uploaded_file = st.file_uploader("", key="1", help="To activate 'wide mode', go to the menu > Settings > turn on 'wide mode'",)
|