File size: 734 Bytes
b486556
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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")