Spaces:
Runtime error
Runtime error
from st_pages import Page, add_page_title, show_pages | |
import streamlit as st | |
show_pages( | |
[ | |
Page("app.py", "Home", "🏠"), | |
# Can use :<icon-name>: or the actual icon | |
Page("pages/market_research.py", "Market Research", ""), | |
Page("pages/competitor_research.py", "Competitor Analysis", ""), | |
Page("pages/cjm.py", "Customer Journey Map", ""), | |
Page("pages/financial_modelling.py", "Financial Modelling", ""), | |
Page("pages/product_metrics.py", "Product Metrics", ""), | |
Page("pages/tool_research.py", "Tool Research", ""), | |
Page("pages/presentations.py", "Coding", "") | |
] | |
) | |
add_page_title() # Optional method to add title and icon to current page | |
st.text("hi") |