Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -111,6 +111,10 @@ def generate_bar_graph(df):
|
|
| 111 |
|
| 112 |
# Streamlit App Layout
|
| 113 |
st.set_page_config(page_title="News Classifier", page_icon="📰")
|
|
|
|
|
|
|
|
|
|
|
|
|
| 114 |
cover_image = Image.open("cover.png") # Ensure this image exists
|
| 115 |
st.image(cover_image, caption="News Classifier 📢", use_container_width=True)
|
| 116 |
|
|
|
|
| 111 |
|
| 112 |
# Streamlit App Layout
|
| 113 |
st.set_page_config(page_title="News Classifier", page_icon="📰")
|
| 114 |
+
|
| 115 |
+
# Increase title size using HTML
|
| 116 |
+
st.markdown("<h1 style='font-size: 50px;'>📰 News Classifier</h1>", unsafe_allow_html=True)
|
| 117 |
+
|
| 118 |
cover_image = Image.open("cover.png") # Ensure this image exists
|
| 119 |
st.image(cover_image, caption="News Classifier 📢", use_container_width=True)
|
| 120 |
|