Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -10,7 +10,7 @@ def page_trending_niche():
|
|
| 10 |
# Using st.columns to create a two-column layout
|
| 11 |
col1, col2 = st.columns([3, 1])
|
| 12 |
with col1:
|
| 13 |
-
st.title("What is trending in my
|
| 14 |
with col2:
|
| 15 |
st.image('Robot.png', use_column_width=True)
|
| 16 |
|
|
@@ -55,7 +55,7 @@ page = st.sidebar.selectbox(
|
|
| 55 |
|
| 56 |
# Display the selected page
|
| 57 |
if page == 'trending_niche':
|
| 58 |
-
|
| 59 |
elif page == 'Social Media Content Generator':
|
| 60 |
page_social_media_generator()
|
| 61 |
elif page == 'Test Page':
|
|
|
|
| 10 |
# Using st.columns to create a two-column layout
|
| 11 |
col1, col2 = st.columns([3, 1])
|
| 12 |
with col1:
|
| 13 |
+
st.title("What is trending in my niche?")
|
| 14 |
with col2:
|
| 15 |
st.image('Robot.png', use_column_width=True)
|
| 16 |
|
|
|
|
| 55 |
|
| 56 |
# Display the selected page
|
| 57 |
if page == 'trending_niche':
|
| 58 |
+
page_trending_niche()
|
| 59 |
elif page == 'Social Media Content Generator':
|
| 60 |
page_social_media_generator()
|
| 61 |
elif page == 'Test Page':
|